ordinarthur-os/turbo.json
2026-04-16 10:46:57 +02:00

19 lines
332 B
JSON

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