mirror of
https://github.com/YuzuZensai/Minikura.git
synced 2026-01-06 04:32:37 +00:00
20 lines
356 B
JSON
20 lines
356 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": [".next/**", "!.next/cache/**", "dist/**"]
|
|
},
|
|
"typecheck": {
|
|
"dependsOn": ["^typecheck"]
|
|
},
|
|
"dev": {
|
|
"persistent": true,
|
|
"cache": false,
|
|
"env": ["DATABASE_URL"]
|
|
}
|
|
},
|
|
"ui": "tui",
|
|
"globalDependencies": ["**/.env"]
|
|
}
|