gradido/turbo.json
2025-06-21 15:07:01 +02:00

29 lines
491 B
JSON

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