tsconfig.json 430 B

123456789101112131415161718192021
  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. },
  19. "compileOnSave": false,
  20. "buildOnSave": false
  21. }