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