twin-optimiser/frontend/tsconfig.json
jtricerolph 88cbc6be7b Fix TS build errors: vite/client types, remove unused inputStyle
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-07-02 20:17:57 +00:00

16 lines
381 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"moduleResolution": "bundler",
"jsx": "react-jsx",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"skipLibCheck": true,
"types": ["vite/client"]
},
"include": ["src"]
}