webapps/turbo.json
Dominik Milacher dbb9cab101
Some checks failed
Build and deploy updated apps / Build & deploy (push) Failing after 1m4s
Update turbo configuration
2025-10-14 15:04:43 +02:00

25 lines
510 B
JSON

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