Uecko_ERP/turbo.json

45 lines
736 B
JSON
Raw Normal View History

2025-01-27 17:12:26 +00:00
{
"$schema": "https://turbo.build/schema.json",
2025-05-02 21:43:51 +00:00
"ui": "tui",
2026-03-03 11:05:09 +00:00
"globalDependencies": [
"**/.env.*local"
],
2025-01-27 17:12:26 +00:00
"tasks": {
2026-03-03 11:05:09 +00:00
"lint": {
"outputs": []
},
"lint:fix": {
"outputs": []
},
2025-04-22 15:09:57 +00:00
"dev": {
"cache": false,
"persistent": true
2025-01-27 17:12:26 +00:00
},
2025-05-04 20:06:57 +00:00
"//#format-and-lint": {},
"//#format-and-lint:fix": {
"cache": false
2025-01-27 17:12:26 +00:00
},
2025-04-22 15:09:57 +00:00
"build": {
2025-05-02 21:43:51 +00:00
"cache": false,
2026-03-03 11:05:09 +00:00
"dependsOn": [
"^build"
],
"inputs": [
"$TURBO_DEFAULT$",
".env*"
],
"outputs": [
"dist/**"
]
2025-05-09 10:45:32 +00:00
},
2025-11-19 09:50:35 +00:00
"build:templates": {
"dependsOn": [],
2026-03-03 11:05:09 +00:00
"outputs": [
"dist/templates/**"
]
2025-11-19 09:50:35 +00:00
},
2025-05-09 10:45:32 +00:00
"clean": {
"cache": false
2025-01-27 17:12:26 +00:00
}
}
2026-03-03 11:05:09 +00:00
}