Files
domain-wall/turbo.json
2025-10-20 17:07:41 +03:00

25 lines
411 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": ["build/**"]
},
"dev": {
"cache": false,
"persistent": true
},
"prod": {
"cache": false
},
"db:migrate": {
"cache": false
},
"test": {
"cache": false
}
}
}