Files
sim/turbo.json
T
Waleed a64b338236 fix(files): fixed resource spacing on files directories pages (#4618)
* fix(files): fixed resource spacing on files directories pages

* fix(build): align turbo schema version

Co-authored-by: Cursor <cursoragent@cursor.com>

---------

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-15 12:48:15 -07:00

45 lines
841 B
JSON

{
"$schema": "https://v2-9-12.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": []
}
}
}