mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
31 lines
575 B
JSON
31 lines
575 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"globalDependencies": ["**/.env.*local"],
|
|
"globalEnv": [
|
|
"NODE_ENV",
|
|
"NEXT_RUNTIME",
|
|
"TASK_ID",
|
|
"OPENROUTER_API_KEY",
|
|
"OPENROUTER_MODEL_ID",
|
|
"PROMPT_PATH",
|
|
"WORKSPACE_PATH",
|
|
"BENCHMARKS_DB_PATH",
|
|
"TURSO_CONNECTION_URL",
|
|
"TURSO_AUTH_TOKEN"
|
|
],
|
|
"tasks": {
|
|
"lint": {},
|
|
"check-types": {},
|
|
"test": {},
|
|
"format": {},
|
|
"dev": {
|
|
"dependsOn": [],
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": [".next/**", "!.next/cache/**", "dist/**"]
|
|
}
|
|
}
|
|
}
|