Bug: Maximum call stack size exceeded
See original GitHub issueDescribe the bug I’m getting this stack-trace when running the tool in my project
> typescript-coverage-report
RangeError: Maximum call stack size exceeded
at getRootNames (/home/luislhl/Workspace/pareto/quantic-spa/node_modules/type-coverage-core/dist/tsconfig.js:148:15)
at async Object.getProjectRootNamesAndCompilerOptions (/home/luislhl/Workspace/pareto/quantic-spa/node_modules/type-coverage-core/dist/tsconfig.js:18:23)
at async Object.lint (/home/luislhl/Workspace/pareto/quantic-spa/node_modules/type-coverage-core/dist/core.js:17:44)
To Reproduce
Just running typescript-coverage-report
without any extra options.
Expected behaviour I expected the report to be generated
Environment
- Tool version: 0.5.0
- OS: Fedora Linux
- Node version: v12.18.3
- Npm version: 6.14.6
Additional context Add any other context about the problem here.
Issue Analytics
- State:
- Created 3 years ago
- Reactions:3
- Comments:23 (12 by maintainers)
Top Results From Across the Web
JavaScript Error: Maximum Call Stack Size Exceeded
If you see the “Maximum Call Stack Size Exceeded” error, there's likely a problem with a recursive function within your JavaScript code. More ......
Read more >How to fix: "RangeError: Maximum call stack size exceeded"
A "RangeError: Maximum call stack size exceeded" is an error that occurs when a function or operation tries to execute too many nested...
Read more >javascript - Maximum call stack size exceeded error
It means that somewhere in your code, you are calling a function which in turn calls another function and so forth, until you...
Read more >Uncaught RangeError: Maximum call ... - Net-Informations.Com
This error is almost always means you have a problem with recursion in JavaScript code, as there isn't any other way in JavaScript...
Read more >RangeError: Maximum call stack size exceeded - Educative.io
The most common source for this error is infinite recursion. You must have a recursive function in your code whose base case is...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@sanjaypojo I’ve created an issue in that repo. I’ll have a look myself too. Thanks for raising this.
Getting this same error on
0.6.4