Files
fullstack-starter-SQLite/turbo.json
2026-01-21 14:41:56 +08:00

33 lines
641 B
JSON

{
"$schema": "./node_modules/turbo/schema.json",
"dangerouslyDisablePackageManagerCheck": true,
"globalDependencies": [
"package.json",
"bun.lock",
"turbo.json",
"biome.json"
],
"tasks": {
"build": {
"outputs": ["dist/**", ".output/**"]
},
"compile": {
"dependsOn": ["build"],
"outputs": ["out/**"]
},
"dev": {
"cache": false,
"persistent": true
},
"fix": {
"outputs": []
},
"typecheck": {
"dependsOn": ["^typecheck"],
"inputs": ["tsconfig.json", "tsconfig.*.json", "**/*.{ts,tsx}"],
"outputs": []
}
},
"ui": "tui"
}