tsconfig.json 385 B

12345678910111213141516171819
  1. {
  2. "compilerOptions": {
  3. "target": "ES6",
  4. "lib": [
  5. "es2017",
  6. "DOM"
  7. ],
  8. "noEmitHelpers": true,
  9. "importHelpers": true,
  10. "module": "commonjs",
  11. "sourceMap": true,
  12. "emitDecoratorMetadata": true,
  13. "experimentalDecorators": true,
  14. "removeComments": true,
  15. "noImplicitAny": true,
  16. "strictNullChecks": true,
  17. "noUnusedLocals": true
  18. }
  19. }