You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have successfully used webpack & its terser plugin to compile my typescript code into javascript code while mangling (obfuscating) variable names. Now i want to use visual studio code debugger to debug the packed & mangled javascript. Visual studio code finds the source maps, and it breaks at the first breakpoint as expected.
So my problem is this:
The debugger is stopping on the breakpoint -> GOOD
The call stack is unobfuscated and I can see the original dir and filenames -> GOOD
The variable names are still mangled. I can't see the original variable names on the debugger's variables panel. -> BAD
This is my request! Thanks for reading.
The text was updated successfully, but these errors were encountered:
Hi,
I have successfully used webpack & its terser plugin to compile my typescript code into javascript code while mangling (obfuscating) variable names. Now i want to use visual studio code debugger to debug the packed & mangled javascript. Visual studio code finds the source maps, and it breaks at the first breakpoint as expected.
So my problem is this:
This is my request! Thanks for reading.
The text was updated successfully, but these errors were encountered: