Replies: 1 comment 1 reply
-
When using our SWC mode, we use SWC under the hood. So that might be different. Check out our website, we have a page dedicated to "SWC" which explains how to enable it. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
tsc
currently has an issue with sourcemaps having an empty names array: microsoft/TypeScript#9627This causes issues when debugging because Typescript variables sometimes get renamed when compiling to Javascript and so referencing them when debugging will fail unless you reference them with their compiled name.
My understanding is that
ts-node
usestsc
under the hood so would suffer from the same issue.Is that right? Do
ts-node
sourcemaps always have an empty names array?Beta Was this translation helpful? Give feedback.
All reactions