Files
my-worker/web-vue/turbo.json
2025-11-26 13:55:01 +08:00

27 lines
452 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"build:deploy": {
"dependsOn": ["^build:deploy"],
"outputs": ["dist/**"]
},
"dev": {
"cache": false,
"persistent": true
},
"type:check": {
"cache": false
},
"uninstall": {
"cache": false
},
"update": {
"cache": false
}
}
}