Files
Cibello-app/turbo.json
T
2026-08-05 19:21:11 +07:00

23 lines
459 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["brand.config.json", ".env.example", "tsconfig.base.json"],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"typecheck": {
"dependsOn": ["^typecheck"],
"outputs": []
},
"test": {
"dependsOn": ["^typecheck"],
"outputs": []
},
"dev": {
"cache": false,
"persistent": true
}
}
}