-
-
Notifications
You must be signed in to change notification settings - Fork 55
Open
Description
I'm submitting a bug report
Library Version:
latest
Operating System:
macOS 10.15.4 Catalina
Node Version:
10.19.0
NPM Version:
6.14.5
Webpack
Latest
Browser:
Chrome Latest
Language:
TypeScript 8.5.3
Current behavior:
- I created the VSCode launch configuration at the root of the dev. app as following:
"configurations": [
{
"name": "Chrome",
"type": "chrome",
"request": "launch",
"url": "http://localhost:8080",
"webRoot": "${workspaceRoot}/src",
"userDataDir": "${workspaceRoot}/.chrome",
"sourceMapPathOverrides": {
"webpack:///./src/": "${webRoot}/"
}
}
] - I set the breakpoint at any place in code, which is executable (validated) in development app.
- I run the dev app in the terminal
- I run the debug session with VSCode. The browser opens. The application is rendered in the browser as expected, but...
- ... breakpoints are still ignored. Them are displaying greyed and the tooltip displayed under the breakpoint is "The breakpoint is set, but not yet bound".
Expected/desired behavior:
The debugging works and the debugger stops on breakpoints both in code of the dev. app and in a code belongs to the package.
Reactions are currently unavailable