tsconfig.json 387 B

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