mono/turbo.json
2025-01-22 20:49:04 +01:00

21 lines
379 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build": {
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": ["dist/**", "storybook-static/**"],
"dependsOn": ["^build"]
},
"lint": {
"dependsOn": ["^lint"]
},
"dev": {
"cache": false,
"persistent": true
},
"clean": {
"cache": false
}
}
}