tsconfig.json 563 B

123456789101112131415161718192021222324252627282930
  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. }
  22. ]
  23. },
  24. "exclude": [
  25. "node_modules",
  26. "test"
  27. ],
  28. "compileOnSave": false,
  29. "buildOnSave": false
  30. }