type-coverage: Maximum call stack size exceeded
Hello,
I have a few users getting a RangeError: Maximum call stack size exceeded when running the typescript-coverage-report command, but (as you’ll see from https://github.com/alexcanessa/typescript-coverage-report/issues/51#issuecomment-811443024) seems like the bug happens also when running type-coverage directly.
Anyone else?
About this issue
- Original URL
- State: closed
- Created 3 years ago
- Reactions: 6
- Comments: 15 (3 by maintainers)
Commits related to this issue
- fix: replace glob with fast-glob to solve glob issue #89 — committed to plantain-00/type-coverage by plantain-00 3 years ago
According to typescript document (https://www.typescriptlang.org/tsconfig#include ), if
And typescript will support
filesis not specified, the default value ofincludeis**.mtsandcts, so**/*.{ts,tsx}will break.@Yonom Can you provide a minimal repo to produce this?