Files
xyflow/turbo.json
2023-06-05 15:40:18 +02:00

26 lines
440 B
JSON

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