| 1234567891011121314151617181920212223 |
- {
- "compilerOptions": {
- "target": "es2024",
- "module": "esnext",
- "moduleResolution": "bundler",
- "declaration": true,
- "emitDeclarationOnly": true,
- "composite": true,
- "incremental": true,
- "skipLibCheck": true,
- "esModuleInterop": true,
- "allowImportingTsExtensions": true,
- "verbatimModuleSyntax": false,
- "strict": true,
- "noUncheckedIndexedAccess": true,
- "exactOptionalPropertyTypes": true,
- "noImplicitOverride": true,
- "noFallthroughCasesInSwitch": true,
- "noUnusedLocals": true,
- "noUnusedParameters": true,
- "types": ["node"]
- }
- }
|