A design system in a box. hip-ui.tngl.io/docs/introduction
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 21 lines 414 B view raw
1{ 2 "$schema": "https://turborepo.com/schema.json", 3 "ui": "tui", 4 "tasks": { 5 "build": { 6 "dependsOn": ["^build"], 7 "inputs": ["$TURBO_DEFAULT$", ".env*"], 8 "outputs": [".next/**", "!.next/cache/**"] 9 }, 10 "lint": { 11 "dependsOn": ["^lint"] 12 }, 13 "check-types": { 14 "dependsOn": ["^check-types"] 15 }, 16 "dev": { 17 "cache": false, 18 "persistent": true 19 } 20 } 21}