/ tsconfig.json
tsconfig.json
1 { 2 "include": ["**/*.ts", "**/*.tsx", "eslint.config.js", "prettier.config.js", "vite.config.js"], 3 4 "compilerOptions": { 5 "target": "ES2022", 6 "jsx": "react-jsx", 7 "module": "ESNext", 8 "baseUrl": ".", 9 "paths": { 10 "@/*": ["./src/*"] 11 }, 12 "lib": ["ES2022", "DOM", "DOM.Iterable"], 13 "types": ["vite/client"], 14 15 /* Bundler mode */ 16 "moduleResolution": "bundler", 17 "allowImportingTsExtensions": true, 18 "verbatimModuleSyntax": true, 19 "noEmit": true, 20 21 /* Linting */ 22 "skipLibCheck": true, 23 "strict": true, 24 "noUnusedLocals": true, 25 "noUnusedParameters": true, 26 "noFallthroughCasesInSwitch": true, 27 "noUncheckedSideEffectImports": true 28 } 29 }