sandbox-agent/turbo.json
2026-01-26 22:29:10 -08:00

20 lines
421 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", "build/**", "lib/**", "src/generated/**"]
},
"generate": {
"dependsOn": ["^generate"],
"outputs": ["src/generated/**"]
},
"typecheck": {
"dependsOn": ["^build", "build"]
},
"dev": {
"cache": false,
"persistent": true
}
}
}