Files
TakeoutSaaS.TenantUI/turbo.json
MSuMshk b9018c1ad8 chore: 仅保留 web-antd 应用目录
删除 web-ele、web-naive、web-tdesign 和 backend-mock 目录,并同步收敛 workspace 与 turbo 配置,确保仓库实际仅保留 web-antd。
2026-02-06 13:16:56 +08:00

46 lines
978 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": [
"pnpm-lock.yaml",
"**/.env.*local",
"**/tsconfig*.json",
"internal/node-utils/*.json",
"internal/node-utils/src/**/*.ts",
"internal/tailwind-config/src/**/*.ts",
"internal/vite-config/*.json",
"internal/vite-config/src/**/*.ts",
"scripts/*/src/**/*.ts",
"scripts/*/src/**/*.json"
],
"globalEnv": ["NODE_ENV"],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": [
"dist/**",
"dist.zip",
".vitepress/dist.zip",
".vitepress/dist/**"
]
},
"preview": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"build:analyze": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"test:e2e": {},
"dev": {
"dependsOn": [],
"outputs": [],
"cache": false,
"persistent": true
},
"typecheck": {
"outputs": []
}
}
}