chore(turbo): simplify and optimize monorepo configuration

This commit is contained in:
2026-02-07 16:35:30 +08:00
parent adb14cff77
commit 2b3026cf69
3 changed files with 13 additions and 13 deletions

View File

@@ -1,27 +1,28 @@
{
"$schema": "./node_modules/turbo/schema.json",
"dangerouslyDisablePackageManagerCheck": true,
"globalDependencies": [
"package.json",
"bun.lock",
"turbo.json",
"biome.json"
],
"globalDependencies": ["bun.lock"],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
"dependsOn": ["^build"]
},
"compile": {
"dependsOn": ["build"]
},
"dev": {
"cache": false,
"persistent": true
},
"fix": {
"outputs": []
"cache": false
},
"typecheck": {
"dependsOn": ["^typecheck"],
"inputs": ["tsconfig.json", "tsconfig.*.json", "**/*.{ts,tsx}"],
"inputs": [
"package.json",
"tsconfig.json",
"tsconfig.*.json",
"**/*.{ts,tsx,d.ts}"
],
"outputs": []
}
},