gradido/turbo.json
einhornimmond 877188b756 fix typo
2025-04-29 13:07:35 +02:00

28 lines
474 B
JSON

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