Files
edr-platform/turbo.json
2026-06-16 11:36:24 +03:00

26 lines
468 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"concurrency": "11",
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", "build/**", ".next/**"]
},
"dev": {
"cache": false,
"persistent": true
},
"test": {
"dependsOn": ["^build"],
"outputs": ["coverage/**"]
},
"lint": {
"outputs": []
},
"type-check": {
"dependsOn": ["^build"],
"outputs": []
}
}
}