| 123456789101112131415161718192021222324252627 |
- {
- "compilerOptions": {
- "target": "ES2022",
- "lib": [
- "ES2023"
- ],
- "module": "ESNext",
- "types": [
- "node"
- ],
- "skipLibCheck": true,
- /* Bundler mode */
- "moduleResolution": "bundler",
- "allowImportingTsExtensions": true,
- "verbatimModuleSyntax": true,
- "moduleDetection": "force",
- "noEmit": true,
- /* Linting */
- "strict": true,
- "noUnusedLocals": true,
- "noFallthroughCasesInSwitch": true
- },
- "include": [
- "scripts",
- "vite.config.ts"
- ]
- }
|