Files
HexaHost-GameCloud/turbo.json
2026-07-05 14:40:57 +02:00

45 lines
781 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"globalPassThroughEnv": [
"APP_*",
"API_*",
"DATABASE_URL",
"REDIS_URL",
"SESSION_SECRET",
"ENCRYPTION_KEY",
"SMTP_*",
"S3_*",
"NODE_*",
"LOG_LEVEL",
"BILLING_*",
"EDGE_*",
"GAME_*",
"MODRINTH_*",
"CURSEFORGE_*",
"WHMCS_*",
"RFC2136_*",
"DNS_*",
"TRAEFIK_*"
],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", ".next/**", "!.next/cache/**"]
},
"lint": {
"dependsOn": ["^lint"]
},
"typecheck": {
"dependsOn": ["^typecheck"]
},
"test": {
"dependsOn": ["^build"]
},
"dev": {
"dependsOn": ["^build"],
"cache": false,
"persistent": true
}
}
}