tsconfig.json 331 B

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