gradido/core/turbo.json
2025-06-21 14:30:02 +02:00

24 lines
409 B
JSON

{
"extends": ["//"],
"tasks": {
"lint": {
},
"lint:fix": {
},
"test": {
"dependsOn": ["config-schema#build"]
},
"typecheck": {
},
"dev": {
"dependsOn": ["database#build", "config-schema#build"],
"persistent": true,
"cache": false
},
"build": {
"dependsOn": ["^build"],
"outputs": ["build/**"],
"cache": true
}
}
}