Files
tabler/turbo.json
2026-01-09 21:49:22 +01:00

42 lines
671 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"globalEnv": [
"NODE_ENV",
"NEXT_PUBLIC_POSTHOG_KEY",
"NEXT_PUBLIC_POSTHOG_HOST"
],
"tasks": {
"build": {
"dependsOn": [
"^build"
],
"outputs": [
"dist/**",
"demo/**"
],
"cache": true
},
"dev": {
"cache": false,
"persistent": true
},
"clean": {
"dependsOn": [
"^clean"
],
"cache": false
},
"bundlewatch": {
"dependsOn": [
"build"
],
"cache": true
},
"type-check": {
"dependsOn": [
"^type-check"
],
"cache": true
}
}
}