tsconfig-test.json 429 B

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