| 12345678910111213141516171819202122 |
- {
- "compilerOptions": {
- "target": "ES2022",
- "lib": ["ES2022"],
- "module": "ESNext",
- "moduleResolution": "bundler",
- "allowImportingTsExtensions": true,
- "resolveJsonModule": true,
- "allowJs": true,
- "strict": true,
- "noEmit": true,
- "esModuleInterop": true,
- "allowSyntheticDefaultImports": true,
- "forceConsistentCasingInFileNames": true,
- "skipLibCheck": true,
- "experimentalDecorators": true,
- "emitDecoratorMetadata": true,
- "declaration": true,
- "declarationMap": true,
- "sourceMap": true
- }
- }
|