pansoft-plrl/turbo.json

33 lines
713 B
JSON
Raw Normal View History

2024-05-19 21:20:42 +08:00
{
"$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"],
2024-06-02 23:46:18 +08:00
"tasks": {
2024-05-19 21:20:42 +08:00
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"stub": {},
"dev": {
2024-05-28 23:53:15 +08:00
"dependsOn": ["^build"],
"outputs": [""],
2024-05-19 21:20:42 +08:00
"cache": false,
"persistent": true
},
2024-06-01 22:17:52 +08:00
"typecheck": {
2024-06-02 23:46:18 +08:00
"outputs": []
2024-06-01 22:17:52 +08:00
}
2024-05-19 21:20:42 +08:00
}
}