Files
Zero/turbo.json

38 lines
688 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"envMode": "loose",
"tasks": {
"build": {
"dependsOn": ["^build", "sentry:sourcemaps"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": [".next/**", "!.next/cache/**"]
},
"dev": {
"dependsOn": ["db:studio"],
"persistent": true,
"cache": false
},
"start": {
"cache": false
},
"lint": {
"outputs": []
},
"db:generate": {
"cache": false
},
"db:migrate": {
"cache": false
},
"db:push": {
"cache": false
},
"db:studio": {
"cache": false
},
"sentry:sourcemaps": {
"cache": false
}
}
}