firefox-devtools / vscode-firefox-debug

VS Code Debug Adapter for Firefox
https://marketplace.visualstudio.com/items?itemName=firefox-devtools.vscode-firefox-debug
MIT License
387 stars 63 forks source link

Paths shown in Firefox and VSCode are different #259

Open GauBen opened 3 years ago

GauBen commented 3 years ago

Hello, here is a screenshot of the problem:

image

launch.json I'm using parcel 2 beta 3.1 ```jsonc { "version": "0.2.0", "configurations": [ { "type": "pwa-msedge", "request": "launch", "name": "Edge", "url": "http://localhost:1234", "webRoot": "${workspaceFolder}", "sourceMapPathOverrides": { "/__parcel_source_root/*": "${workspaceFolder}/*", "../*": "${webRoot}/*" } }, { "type": "firefox", "request": "launch", "name": "Firefox", "url": "http://localhost:1234", "webRoot": "${workspaceFolder}", "reAttach": true, "pathMappings": [ { "path": "../*", "url": "${webRoot}/*" } ], "clearConsoleOnReload": true, "suggestPathMappingWizard": true } ] } ```

Is this behavior normal?

serranomorante commented 8 months ago

same issue here 🙏