Files
2026-07-13 12:25:08 +08:00

19 lines
352 B
JSON

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