tsconfig.json 502 B

123456789101112131415161718192021222324
  1. {
  2. "compilerOptions": {
  3. "module": "commonjs",
  4. "target": "es2016",
  5. "noImplicitAny": false,
  6. "removeComments": false,
  7. "emitDeclarationOnly": false,
  8. "emitDecoratorMetadata": true,
  9. "experimentalDecorators": true,
  10. "sourceMap": true,
  11. "noImplicitReturns": true,
  12. "noFallthroughCasesInSwitch": true,
  13. "noUnusedLocals": true,
  14. "declaration": true,
  15. "skipLibCheck": true,
  16. "lib": [
  17. "dom",
  18. "es5",
  19. "es6",
  20. "es7",
  21. "es2015"
  22. ]
  23. }
  24. }