tsconfig.json 326 B

1234567891011121314151617
  1. {
  2. "compilerOptions": {
  3. "module": "CommonJS",
  4. "lib": [
  5. "ES2015",
  6. "DOM",
  7. "dom",
  8. "dom.iterable"
  9. ],
  10. "noImplicitAny": true,
  11. "removeComments": true,
  12. "preserveConstEnums": true,
  13. },
  14. "exclude": [
  15. "**/*.spec.ts"
  16. ]
  17. }