Files
hikari/turbo.json
T
2025-08-07 14:15:07 -07:00

22 lines
368 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build": {
"dependsOn": ["^lint", "^test", "^db"],
"outputs": ["dist/**", "prod/**"]
},
"test": {
"dependsOn": []
},
"lint": {
"dependsOn": []
},
"dev": {
"cache": false,
"persistent": true
},
"db": {
"cache": false
}
}
}