Files
app-padel/turbo.json
2026-02-01 06:08:36 +00:00

25 lines
462 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*local"],
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**", "dist/**"]
},
"dev": {
"cache": false,
"persistent": true
},
"lint": {},
"type-check": {
"dependsOn": ["^build"]
},
"db:generate": {
"cache": false
},
"db:push": {
"cache": false
}
}
}