Files
sim/turbo.json
Waleed 1324987def improvement(turbo): align turborepo config with best practices (#3458)
* improvement(turbo): align turborepo config with best practices

* fix(turbo): address PR review feedback

* fix(turbo): add lint:check task for read-only lint+format CI checks

lint:check previously delegated to format:check which only checked
formatting. Now it runs biome check (no --write) which enforces both
lint rules and formatting without mutating files.

* upgrade turbo
2026-03-07 12:38:46 -08:00

45 lines
841 B
JSON

{
"$schema": "https://v2-8-13.turborepo.dev/schema.json",
"envMode": "loose",
"tasks": {
"transit": {
"dependsOn": ["^transit"],
"outputs": []
},
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": [".next/**", "!.next/cache/**", "dist/**"]
},
"dev": {
"persistent": true,
"cache": false
},
"start": {
"cache": false
},
"test": {
"dependsOn": ["^build"],
"outputs": []
},
"lint": {
"dependsOn": ["transit"],
"outputs": []
},
"format": {
"outputs": []
},
"format:check": {
"outputs": []
},
"lint:check": {
"dependsOn": ["transit"],
"outputs": []
},
"type-check": {
"dependsOn": ["transit"],
"outputs": []
}
}
}