| 12345678910111213141516171819 |
- {
- "extends": "../../tsconfig.base.json",
- "compilerOptions": {
- "baseUrl": ".",
- "outDir": "dist",
- "declaration": true,
- "target": "ES2020",
- "lib": ["ES2020", "dom"],
- "module": "commonjs",
- "moduleResolution": "node",
- "rootDir": "src",
- "esModuleInterop": true,
- "experimentalDecorators": true,
- "emitDecoratorMetadata": true,
- "strict": false
- },
- "include": ["./src/**/*", "./test/**/*"],
- "exclude": ["node_modules", "dist"]
- }
|