12345678910111213141516171819 |
- {
- "compilerOptions": {
- "declaration": true,
- "importHelpers": true,
- "module": "commonjs",
- "outDir": "lib",
- "rootDirs": [
- "./"
- ],
- "strict": true,
- "target": "es2017",
- "noImplicitAny": false,
- "esModuleInterop": true,
- "experimentalDecorators": true,
- "emitDecoratorMetadata": true,
- "skipLibCheck": true,
- },
- "include": ["./**/*"]
- }
|