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