| 12345678910111213141516171819202122232425262728293031323334 |
- {
- "compilerOptions": {
- "target": "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,
- "composite": true,
- "declaration": true,
- "declarationMap": true,
- "sourceMap": true,
- "baseUrl": ".",
- "paths": {
- "~/*": ["./src/*"]
- }
- },
- "include": [
- "src/**/*",
- "tests/**/*"
- ],
- "exclude": [
- "node_modules",
- "dist"
- ]
- }
|