Files
lifeforge/turbo.json
2026-06-25 08:53:36 +08:00

22 lines
403 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", "client/dist/**", "server/dist/**"],
"env": ["VITE_API_HOST"]
},
"dev": {
"cache": false,
"persistent": true
},
"types": {
"dependsOn": ["^types"]
},
"lint": {},
"test": {
"dependsOn": ["build"]
}
}
}