28 lines
672 B
JSON
28 lines
672 B
JSON
|
|
{
|
||
|
|
"include": ["src/**/*.ts", "src/**/*.tsx", "vite.config.ts", "eslint.config.js"],
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2022",
|
||
|
|
"jsx": "react-jsx",
|
||
|
|
"module": "ESNext",
|
||
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
||
|
|
"types": ["vite/client"],
|
||
|
|
|
||
|
|
/* Bundler mode */
|
||
|
|
"moduleResolution": "Bundler",
|
||
|
|
"allowImportingTsExtensions": true,
|
||
|
|
"verbatimModuleSyntax": false,
|
||
|
|
"noEmit": true,
|
||
|
|
|
||
|
|
/* Linting */
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"strict": true,
|
||
|
|
"noUnusedLocals": false,
|
||
|
|
"noUnusedParameters": false,
|
||
|
|
"noFallthroughCasesInSwitch": true,
|
||
|
|
"noUncheckedSideEffectImports": true,
|
||
|
|
"paths": {
|
||
|
|
"@/*": ["./src/*"]
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|