2024-09-21 13:28:02 +07:00
|
|
|
{
|
2026-02-13 15:52:13 +07:00
|
|
|
"$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"]
|
2024-09-21 13:28:02 +07:00
|
|
|
}
|