| 1234567891011121314151617181920 |
- {
- "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"]
- }
|