-
-
Notifications
You must be signed in to change notification settings - Fork 81
Source maps broken since versions 1.10.1 (up to and including latest 1.10.9) #848
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Can confirm it's an issue - a workaround is to set |
The workaround does not work for me. Stack traces are always broken for me when source maps are inline. I opened a new issue to report this: #861. |
I'm running into this when using @swc/jest. Source maps are off when the input file has type declarations and other omittable material. |
I'm having a similar problem. Using v1.10.10 (and other versions—I've tried as far back as 1.9), blank lines are not handled properly by sourcemaps, so the line numbers reported in stack traces are always off. In larger files, they can be way off. @Brooooooklyn any thoughts here? |
With version 1.10.0 this works as expected, and stack trace says
test.ts:1:7
(which is correct):With version 1.10.1, the stack trace says
test.ts:2:7
.It looks like the change related to inlineSourceMap in #726 broke the non-inline case. Maybe this line changed in #726
should have been instead something like this?
...so we get non-inline source maps by default. At least with Node 20.17.0 the inline source maps don't seem to work without the fix suggested in #791.
The text was updated successfully, but these errors were encountered: