Files
Cibello-app/turbo.json
T

24 lines
511 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": [],
"env": ["DATABASE_URL", "TEST_DATABASE_URL"]
},
"dev": {
"cache": false,
"persistent": true
}
}
}