gradido/turbo.json
2025-04-28 10:15:49 +02:00

28 lines
467 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"lint": {
},
"lint:fix": {
},
"test": {
},
"typecheck": {
},
"dev": {
"dependsOn": ["config#build"],
"persistent": true,
"cache": false
},
"build": {
"dependsOn": ["^build"],
"outputs": ["build/**"],
"cache": true
},
"start": {
"dependsOn": ["build"],
"persistent": true,
"cache": false
}
}
}