backstage-demo-janus-showcase/turbo.json
Med Mouine 089a1cd890 config
2024-04-18 10:23:04 -04:00

35 lines
653 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"export-dynamic": {
"outputs": ["dist-dynamic/**"]
},
"start": {
"cache": false,
"persistent": true
},
"build": {
"outputs": ["dist/**"],
"dependsOn": ["//#tsc", "^build"]
},
"app#build": {
"outputs": ["dist/**"],
"dependsOn": ["^build"]
},
"clean": {
"cache": false
},
"test": {
"outputs": ["coverage/**"]
},
"lint": {},
"//#tsc": {
"outputs": ["dist-types/**"]
},
"//#prettier:fix": {
"cache": false
}
},
"globalDependencies": ["tsconfig.json"]
}