Files
tower/turbo.json
T
2026-05-27 15:36:52 +05:30

22 lines
388 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"generate": {
"cache": false
},
"build": {
"dependsOn": ["generate", "^build"],
"outputs": ["dist/**", ".next/**"]
},
"dev": {
"cache": false,
"persistent": true
},
"test": {
"dependsOn": ["^build"],
"outputs": ["coverage/**"]
},
"lint": {}
}
}