forked from imbytecat/fullstack-starter
bun build 会调用 Bun 内置 bundler 而非 package.json script, 将所有文档中的 bun <script> 改为 bun run <script> 以避免歧义。 bun test 保留不变(直接使用 Bun 内置 test runner)。
23 lines
469 B
JSON
23 lines
469 B
JSON
{
|
|
"$schema": "./node_modules/turbo/schema.json",
|
|
"dangerouslyDisablePackageManagerCheck": true,
|
|
"globalDependencies": ["bun.lock"],
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"fix": {
|
|
"cache": false
|
|
},
|
|
"typecheck": {
|
|
"inputs": ["package.json", "tsconfig.json", "tsconfig.*.json", "**/*.{ts,tsx,d.ts}"],
|
|
"outputs": []
|
|
}
|
|
},
|
|
"ui": "tui"
|
|
}
|