managarten/turbo.json
2025-11-27 02:25:37 +01:00

41 lines
744 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"globalEnv": [
"NODE_ENV",
"MANA_CORE_AUTH_URL",
"JWT_PUBLIC_KEY",
"AZURE_OPENAI_ENDPOINT",
"AZURE_OPENAI_API_KEY"
],
"tasks": {
"dev": {
"cache": false,
"persistent": true
},
"build": {
"dependsOn": ["^build"],
"outputs": [
"dist/**",
"build/**",
".next/**",
".svelte-kit/**",
".astro/**"
]
},
"lint": {
"dependsOn": ["^lint"],
"outputs": []
},
"type-check": {
"dependsOn": ["^type-check"],
"outputs": []
},
"test": {
"dependsOn": ["^build"],
"outputs": ["coverage/**"]
},
"clean": {
"cache": false
}
}
}