12345678910111213141516171819202122 |
- {
- "compilerOptions": {
- "target": "es2018",
- "module": "commonjs",
- "strict": true,
- "esModuleInterop": true,
- "skipLibCheck": true,
- "forceConsistentCasingInFileNames": true,
- "moduleResolution": "Node",
- "outDir": "dist",
- "emitDecoratorMetadata": true,
- "experimentalDecorators": true,
- "strictPropertyInitialization": false,
- "noImplicitAny": false,
- "types": [
- "@types/node"
- ]
- },
- "include": [
- "src/**/*"
- ]
- }
|