tsconfig-test.json 381 B

123456789101112131415161718
  1. {
  2. "compilerOptions": {
  3. "outDir": "test-tmp",
  4. "target": "ES6",
  5. "module": "commonjs",
  6. "inlineSourceMap": true,
  7. "inlineSources": true,
  8. "emitDecoratorMetadata": true,
  9. "experimentalDecorators": true,
  10. "removeComments": true,
  11. "noImplicitAny": true,
  12. "strictNullChecks": true,
  13. "noUnusedLocals": true
  14. },
  15. "exclude": [
  16. "node_modules"
  17. ]
  18. }