claude-prism/turbo.json
delibae 95c4072ec1 chore: fix all lint and formatting issues (biome check)
- Fix unused imports and variables
- Apply biome formatting (template literals, semicolons, line width)
- Fix a11y issues (label associations, anchor content)
- Fix Node.js import protocol (node:fs, node:path)
- Use self.onmessage in web worker

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-16 17:04:36 +09:00

28 lines
645 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": [
".next/**",
"!.next/cache/**",
".wrangler/**",
"dist/**",
"src-tauri/target/**"
],
"env": ["LATEX_API_URL", "KV_REST_API_URL", "KV_REST_API_TOKEN"]
},
"test": {
"dependsOn": ["^build"],
"inputs": ["src/**", "tests/**", "vitest.config.*"]
},
"dev": {
"cache": false,
"persistent": true
}
},
"globalEnv": [],
"globalDependencies": [".env", ".env.local"]
}