Uecko_ERP/turbo.json
2026-05-05 13:34:36 +02:00

49 lines
784 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"globalDependencies": [
"**/.env.*local"
],
"tasks": {
"check": {
"dependsOn": [
"^check"
]
},
"lint": {
"dependsOn": [
"^lint"
]
},
"dev": {
"cache": false,
"persistent": true
},
"//#format-and-lint": {},
"//#format-and-lint:fix": {
"cache": false
},
"build": {
"cache": false,
"dependsOn": [
"^build"
],
"inputs": [
"$TURBO_DEFAULT$",
".env*"
],
"outputs": [
"dist/**"
]
},
"build:templates": {
"dependsOn": [],
"outputs": [
"dist/templates/**"
]
},
"clean": {
"cache": false
}
}
}