FieldOps/turbo.json
2026-05-16 12:02:15 +01:00

42 lines
800 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": [".env"],
"globalEnv": [
"NODE_ENV",
"DATABASE_URL",
"AUTH_SECRET",
"AUTH_DEV_AUTOLOGIN",
"NEXT_PUBLIC_APP_URL",
"LOG_LEVEL"
],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**", "dist/**"]
},
"dev": {
"cache": false,
"persistent": true
},
"lint": {
"dependsOn": ["^build"],
"outputs": []
},
"typecheck": {
"dependsOn": ["^build"],
"outputs": []
},
"test": {
"dependsOn": ["^build"],
"outputs": ["coverage/**"]
},
"clean": {
"cache": false
},
"db:generate": {
"cache": false,
"outputs": ["node_modules/.prisma/**"]
}
}
}