tsconfig.json 602 B

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