Files
zitadel/turbo.json
Elio Bischof 3cad0828e7 fix linting
2023-06-07 15:34:06 +02:00

42 lines
683 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"generate": {
"outputs": [
"src/proto/**"
],
"cache": true
},
"build": {
"outputs": [
"dist/**",
".next/**",
"!.next/cache/**"
],
"dependsOn": [
"generate",
"lint",
"^build"
]
},
"test": {},
"test:watch": {
"cache": false
},
"lint": {},
"dev": {
"cache": false,
"persistent": true
},
"clean": {
"cache": false
}
},
"globalDependencies": [
"**/.env.*local"
],
"globalEnv": [
"ZITADEL_API_URL",
"ZITADEL_SERVICE_USER_TOKEN"
]
}