| 12345678910111213141516171819202122232425262728293031 |
- {
- "compilerOptions": {
- "target": "ES2022",
- "useDefineForClassFields": true,
- "lib": [
- "ES2022",
- "DOM",
- "DOM.Iterable"
- ],
- "module": "ESNext",
- "types": [
- "vite/client"
- ],
- "skipLibCheck": true,
- /* Bundler mode */
- "moduleResolution": "bundler",
- "allowImportingTsExtensions": true,
- "verbatimModuleSyntax": true,
- "moduleDetection": "force",
- "noEmit": true,
- "jsx": "react-jsx",
- /* Linting */
- "strict": true,
- "noUnusedLocals": true,
- "noUnusedParameters": true,
- "noFallthroughCasesInSwitch": true
- },
- "include": [
- "src"
- ]
- }
|