Files
nontara/turbo.json
Kenzuya 4b7eaea60c chore: format codebase with tabs and update config files
- Apply tab indentation across all TypeScript files
- Reformat biome.json, tsconfig.json, and turbo.json
- Update component and schema files for consistency
2025-10-22 18:47:18 +07:00

42 lines
671 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": ["dist/**"]
},
"lint": {
"dependsOn": ["^lint"]
},
"check-types": {
"dependsOn": ["^check-types"]
},
"dev": {
"cache": false,
"persistent": true
},
"db:push": {
"cache": false,
"persistent": true
},
"db:studio": {
"cache": false,
"persistent": true
},
"db:migrate": {
"cache": false,
"persistent": true
},
"db:generate": {
"cache": false,
"persistent": true
},
"auth:generate": {
"cache": false,
"persistent": true
}
}
}