Files
xyflow/turbo.json
2022-09-19 16:07:30 +02:00

25 lines
445 B
JSON

{
"$schema": "https://turborepo.org/schema.json",
"pipeline": {
"build": {
"dependsOn": ["^build", "typecheck", "lint"],
"outputs": ["dist/**"]
},
"dev": {
"outputs": ["dist/**"],
"cache": false
},
"lint": {
"outputs": []
},
"typecheck": {
"outputs": []
},
"test": {
"dependsOn": ["^build"],
"outputs": []
}
},
"globalDependencies": ["$NODE_ENV"]
}