| 12345678910111213141516171819202122232425 |
- {
- "compilerOptions": {
- "target": "ES2020",
- "module": "ESNext",
- "lib": ["ES2020", "DOM"],
- "moduleResolution": "bundler",
- "strict": true,
- "esModuleInterop": true,
- "skipLibCheck": true,
- "forceConsistentCasingInFileNames": true,
- "declaration": true,
- "declarationMap": true,
- "sourceMap": true,
- "outDir": "./dist",
- "rootDir": ".",
- "resolveJsonModule": true,
- "allowSyntheticDefaultImports": true,
- "experimentalDecorators": true,
- "emitDecoratorMetadata": true,
- "types": ["node"],
- "baseUrl": ".",
- },
- "include": ["src/**/*", "tests"],
- "exclude": ["node_modules", "dist"]
- }
|