| 12345678910111213141516171819 |
- {
- "compilerOptions": {
- "target": "es2016",
- "module": "commonjs",
- "esModuleInterop": true,
- "forceConsistentCasingInFileNames": true,
- "experimentalDecorators": true,
- "emitDecoratorMetadata": true,
- "strict": true,
- "strictPropertyInitialization": false,
- "sourceMap": true,
- "declaration": true,
- "skipLibCheck": true,
- "outDir": "./dist"
- },
- "include": [
- "./index.ts"
- ]
- }
|