12345678910111213141516171819202122232425 |
- {
- "compilerOptions": {
- "outDir": "test-tmp",
- "target": "es6",
- "lib": [
- "es2017",
- "dom"
- ],
- "noEmitHelpers": true,
- "importHelpers": true,
- "module": "commonjs",
- "esModuleInterop": true,
- "inlineSourceMap": true,
- "inlineSources": true,
- "emitDecoratorMetadata": true,
- "experimentalDecorators": true,
- "removeComments": true,
- "noImplicitAny": true,
- "strictNullChecks": true,
- "noUnusedLocals": true
- },
- "exclude": [
- "node_modules"
- ]
- }
|