Uecko_ERP/turbo.json

18 lines
323 B
JSON
Raw Normal View History

2025-01-27 17:12:26 +00:00
{
"$schema": "https://turbo.build/schema.json",
2025-01-28 14:01:02 +00:00
"globalDependencies": ["**/.env.*local"],
2025-01-27 17:12:26 +00:00
"tasks": {
2025-04-22 15:09:57 +00:00
"dev": {
"cache": false,
"persistent": true
2025-01-27 17:12:26 +00:00
},
"lint": {
"dependsOn": ["^lint"]
},
2025-04-22 15:09:57 +00:00
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "dist/**"]
2025-01-27 17:12:26 +00:00
}
}
}