Files
basango/turbo.json
T

40 lines
747 B
JSON

{
"$schema": "https://turborepo.com/schema.json",
"globalDependencies": ["**/.env"],
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": [
".next/**",
"!.next/cache/**",
"next-env.d.ts",
".expo/**",
"dist/**",
"build/**",
"lib/**"
],
"passThroughEnv": []
},
"dev": {
"cache": false,
"inputs": ["$TURBO_DEFAULT$", ".env"],
"persistent": true
},
"start": {
"cache": false
},
"test": {
"cache": false
},
"topo": {
"dependsOn": ["^topo"]
},
"typecheck": {
"dependsOn": ["^topo"],
"outputs": []
}
},
"ui": "tui"
}