Roo-Code/benchmark/turbo.json
2025-03-19 19:05:03 -07:00

28 lines
495 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*local"],
"globalEnv": [
"NODE_ENV",
"NEXT_RUNTIME",
"RUN_ID",
"OPENROUTER_API_KEY",
"OPENROUTER_MODEL_ID",
"PROMPT_PATH",
"WORKSPACE_PATH",
"BENCHMARKS_DB_PATH"
],
"tasks": {
"format": {},
"lint": {},
"check-types": {},
"test": {},
"dev": {
"cache": false,
"persistent": true
},
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**"]
}
}
}