openclaw/ui/tsconfig.json
Cyrus Goh aace1cd4c7
chore(ui): enable strict unused variable checks in tsconfig
Add noUnusedLocals and noUnusedParameters to ui/tsconfig.json
to catch unused imports and variables at compile time.
2026-01-25 21:34:15 -08:00

17 lines
391 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"strict": true,
"experimentalDecorators": true,
"skipLibCheck": true,
"types": ["vite/client"],
"useDefineForClassFields": false,
"noUnusedLocals": true,
"noUnusedParameters": true
},
"include": ["src"]
}