-
Notifications
You must be signed in to change notification settings - Fork 287
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
support the noDebug
flag
#523
Comments
It does; js-debug does not actually respect the noDebug flag yet |
noDebug
flag not respected when starting applicationnoDebug
flag
Got it -- thanks for the quick response. |
@connor4312 I see there is already an issue for |
I'm not sure if there's a "specification" for how noDebug is supposed to work. In the commit I have just skipped enabling the debugger, runtime, and network domains on the target. This means users will still see the sessions tree on the left hand side, but won't hit breakpoints. Actually, I will also keep the Runtime domain enabled which lets them see user scripts, console logs, and the repl. |
@connor4312 the DAP spec is not very precise on
So what you are doing for js-debug makes perfect sense. |
This issue occurs when debugging a Blazor WASM application using vscode-js-debug.
When executing
Start without Debugging
, thenoDebug
property is set in the launching configuration for the debug session.However, the browser launches with debugging enabled (e.g. you can set breakpoints and it makes requests to our DebugProxy.)
Note: This happens with Chrome. I'll see if Edge has the same issue.
The text was updated successfully, but these errors were encountered: