| 123456789101112131415161718192021222324 |
- {
- "compilerOptions": {
- "target": "es2023",
- "module": "esnext",
- "lib": ["ES2023", "DOM"],
- "types": ["vite/client"],
- "allowArbitraryExtensions": true,
- "skipLibCheck": true,
- /* Bundler mode */
- "moduleResolution": "bundler",
- "allowImportingTsExtensions": true,
- "verbatimModuleSyntax": true,
- "moduleDetection": "force",
- "noEmit": true,
- /* Linting */
- "noUnusedLocals": true,
- "noUnusedParameters": true,
- "erasableSyntaxOnly": true,
- "noFallthroughCasesInSwitch": true
- },
- "include": ["src"]
- }
|