work-hub-server/turbo.json
2026-06-22 15:08:06 +04:00

23 lines
523 B
JSON

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