Files
Minikura/turbo.json

20 lines
356 B
JSON
Raw Permalink Normal View History

2024-09-21 13:28:02 +07:00
{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build": {
"dependsOn": ["^build"],
2025-05-12 12:37:35 +07:00
"outputs": [".next/**", "!.next/cache/**", "dist/**"]
2024-09-21 13:28:02 +07:00
},
"typecheck": {
"dependsOn": ["^typecheck"]
},
"dev": {
"persistent": true,
2024-10-01 19:10:05 +07:00
"cache": false,
"env": ["DATABASE_URL"]
2024-09-21 13:28:02 +07:00
}
},
"ui": "tui",
"globalDependencies": ["**/.env"]
}