Connor Peet
Connor Peet
Not really, since sourcemaps don't tell us where any given symbol is declared, they just map locations to other locations. I realized we probably need a DAP feature for this,...
Ah, yes, thanks for the ping. This would be covered by https://github.com/microsoft/vscode-js-debug/pull/2056
This is hard to do precisely, but a (relatively) cheap way could be to see if the lines in the source mapped changes have the same number of lines as...
Can you get a trace log using the following instructions? --- If you're able to, add `"trace": true` to your `launch.json` and reproduce the issue. The location of the log...
Your source map has the path `service/AuthServices.ts`. This is being added to the webRoot `/apps/admin-console/src` to form `/apps/admin-console/src/static/js/service/AuthServices.ts`, but you want it to be `/apps/app-selector/src/service/AuthServices.ts` instead. So you should adjust...
You can open a new tab manually in the browser and js-debug will attach to it. We don't have any automatic mechanism for this today, though.
We do not currently support loading remote sources from maps in Node. However, note that you will also need changes in how you publish sourcemaps. The source root `http:/raw.githubusercontent.com/SAP/...` is...
I don't have a timeline at the moment, but this may be easy to add. Code pointer: https://github.com/microsoft/vscode-js-debug/blob/a5995596511282127cf31932449d89c22588ee24/src/adapter/sources.ts#L1136-L1140 Currently `fileUrl` is only a file URL, but if we could do...
Indeed 🙂 You can check out the contributing guide for setup: https://github.com/microsoft/vscode-js-debug/blob/main/CONTRIBUTING.md
Looking at the URI spec, they make no special stipulation about multiple slashes, they're sent to the server. They can be equivalent to a single slash, or they can not...