hi-frontend/turbo.json
2025-11-26 19:56:16 -08:00

38 lines
699 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": [".next/**", "!.next/cache/**", "dist/**"]
},
"dev": {
"cache": false,
"persistent": true
},
"lint": {
"dependsOn": ["^lint"]
},
"check": {
"dependsOn": ["^check"]
},
"test": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*"]
},
"openapi": {
"cache": false
},
"i18n:extract": {
"cache": false
},
"i18n:sync": {
"cache": false
},
"i18n:status": {
"cache": false
}
}
}