31 lines
562 B
JSON
31 lines
562 B
JSON
{
|
|
"$schema": "./node_modules/turbo/schema.json",
|
|
"dangerouslyDisablePackageManagerCheck": true,
|
|
"globalDependencies": ["bun.lock"],
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"compile": {
|
|
"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"
|
|
}
|