mirror of
https://github.com/YuzuZensai/Minikura.git
synced 2026-03-30 12:25:35 +00:00
30 lines
631 B
JSON
30 lines
631 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": [".next/**", "!.next/cache/**", "dist/**"],
|
|
"outputLogs": "new-only"
|
|
},
|
|
"typecheck": {
|
|
"dependsOn": ["^typecheck"],
|
|
"outputLogs": "errors-only"
|
|
},
|
|
"dev": {
|
|
"persistent": true,
|
|
"cache": false,
|
|
"env": ["DATABASE_URL"],
|
|
"outputLogs": "new-only"
|
|
},
|
|
"lint": {
|
|
"outputLogs": "errors-only"
|
|
},
|
|
"format": {
|
|
"outputLogs": "errors-only"
|
|
}
|
|
},
|
|
"ui": "tui",
|
|
"globalDependencies": ["**/.env"],
|
|
"globalEnv": ["NODE_ENV"]
|
|
}
|