| 123456789101112131415161718 |
- {
- "compilerOptions": {
- "target": "ES2020",
- "module": "commonjs",
- "lib": ["ES2020"],
- "strict": true,
- "strictPropertyInitialization": false,
- "esModuleInterop": true,
- "skipLibCheck": true,
- "forceConsistentCasingInFileNames": true,
- "outDir": "./dist",
- "rootDir": "./src",
- "emitDecoratorMetadata": true,
- "experimentalDecorators": true
- },
- "include": ["src/**/*"],
- "exclude": ["node_modules"]
- }
|