KRadio/tsconfig.json
Triston Armstrong 6d5527e61c feat(all): get eslint working in neovim
It works just fine as a default in vscodium, but i couldnt get it to work in neovim. Had to do a
little messing around and it now works perfectly in neovim which is awesome and a pretty good
indication that itll work elsewhere as well.

Issue #14
2024-03-22 01:20:59 -05:00

26 lines
604 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"module": "ESNext",
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"jsx": "preserve"
},
"include": ["src"],
"exclude": ["node_modules", "target", "src-tauri"]
}