hi-frontend/turbo.json
web@ppanel 484975c657 ♻️ chore: remove unused Vue.js files and update documentation formatting
- Deleted cached Vue.js and source map files from the documentation.
- Updated template variable formatting in mobile logs, subscription management, and authentication control
2025-12-11 08:32:41 +00:00

49 lines
914 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
},
"docs:dev": {
"cache": false,
"persistent": true
},
"docs:build": {
"outputs": [".vitepress/dist/**"]
},
"docs:preview": {
"cache": false,
"persistent": true
}
}
}