Roo-Code/evals/turbo.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/**"]
}
}
}