mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-12 22:33:34 +00:00
23 lines
431 B
JSON
23 lines
431 B
JSON
|
|
{
|
||
|
|
"$schema": "https://turbo.build/schema.json",
|
||
|
|
"globalDependencies": ["**/.env.*local"],
|
||
|
|
"pipeline": {
|
||
|
|
"build": {
|
||
|
|
"outputs": ["dist/**", ".next/**", "!.next/cache/**"],
|
||
|
|
"dependsOn": ["^build"]
|
||
|
|
},
|
||
|
|
"test": {
|
||
|
|
"outputs": ["coverage/**"],
|
||
|
|
"dependsOn": []
|
||
|
|
},
|
||
|
|
"lint": {},
|
||
|
|
"dev": {
|
||
|
|
"cache": false,
|
||
|
|
"persistent": true
|
||
|
|
},
|
||
|
|
"clean": {
|
||
|
|
"cache": false
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|