60 lines
1.1 KiB
JSON
60 lines
1.1 KiB
JSON
{
|
|
"$schema": "./node_modules/turbo/schema.json",
|
|
"dangerouslyDisablePackageManagerCheck": true,
|
|
"globalDependencies": ["bun.lock"],
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"compile": {
|
|
"dependsOn": ["build"],
|
|
"cache": false
|
|
},
|
|
"compile:darwin": {
|
|
"dependsOn": ["build"],
|
|
"cache": false
|
|
},
|
|
"compile:linux": {
|
|
"dependsOn": ["build"],
|
|
"cache": false
|
|
},
|
|
"compile:windows": {
|
|
"dependsOn": ["build"],
|
|
"cache": false
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"dist": {
|
|
"dependsOn": ["build"],
|
|
"cache": false
|
|
},
|
|
"dist:linux": {
|
|
"dependsOn": ["build"],
|
|
"cache": false
|
|
},
|
|
"dist:mac": {
|
|
"dependsOn": ["build"],
|
|
"cache": false
|
|
},
|
|
"dist:win": {
|
|
"dependsOn": ["build"],
|
|
"cache": false
|
|
},
|
|
"fix": {
|
|
"cache": false
|
|
},
|
|
"typecheck": {
|
|
"inputs": [
|
|
"package.json",
|
|
"tsconfig.json",
|
|
"tsconfig.*.json",
|
|
"**/*.{ts,tsx,d.ts}"
|
|
],
|
|
"outputs": []
|
|
}
|
|
},
|
|
"ui": "tui"
|
|
}
|