| 12345678910111213141516171819202122232425262728 |
- {
- "compilerOptions": {
- "module": "CommonJS",
- "moduleResolution": "Node",
- "target": "ES2022",
- "strict": true,
- "esModuleInterop": true,
- "skipLibCheck": true,
- "forceConsistentCasingInFileNames": true,
- "outDir": "./dist",
- "rootDir": "./src",
- "declaration": true,
- "resolveJsonModule": true,
- "emitDecoratorMetadata": true,
- "experimentalDecorators": true,
- "types": [
- "node"
- ]
- },
- "include": [
- "src/**/*"
- ],
- "exclude": [
- "node_modules",
- "dist",
- "test"
- ]
- }
|