tsconfig.json 631 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "compilerOptions": {
  3. "emitDecoratorMetadata": true,
  4. "experimentalDecorators": true,
  5. "importHelpers": true,
  6. "lib": [
  7. "es2017",
  8. "dom"
  9. ],
  10. "module": "commonjs",
  11. "esModuleInterop": true,
  12. "noEmitHelpers": true,
  13. "noImplicitThis": false,
  14. "noUnusedLocals": true,
  15. "removeComments": true,
  16. "sourceMap": true,
  17. "strict": true,
  18. "target": "es2015",
  19. "plugins": [
  20. {
  21. "name": "tslint-language-service",
  22. "ignoreDefinitionFiles": true
  23. }
  24. ]
  25. },
  26. "exclude": [
  27. "node_modules",
  28. "test"
  29. ],
  30. "compileOnSave": false,
  31. "buildOnSave": false
  32. }