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
Describe the bug
Use of Debugging does not work as per documentation, but I can get it to work as described below.
Ubuntu 21.04 (fully up to date, and reproduced in a newly installed Virtualbox instance)
vscode via deb package, 1.57.1
deno 1.11.2
plugin 3.6.1
To Reproduce
$cat main.ts
console.log("Hello, World!");
console.log("Hello, World!");
Deno.exit(); //<<< Needed to ensure the debugger does close correctly if/when a successful debug session is achieved.
Without launch.json (the Python Plugin works like this)
Using debug menu, using the Blue Run and Debug button, with and without breakpoint
Generally the debugger hangs and I get the dialog, Error processing Launch ....
With launch,json
A. No output unless a "outputCapture": "std"
or "console": "integratedTerminal"
is added
B: No breakpoint is hit if using --inspect
C: Debugging only works if --inspect-brk
is used, but of course, initial stop is on first line of code.
If I am doing something wrong, I don't know what it is!
Expected behavior
To work easily without launch.json, or with a correct launch.json automatically added using --inspect
Versions
Ubuntu 21.04 (fully up to date, and reproduced in a newly installed Virtualbox instance)
vscode via deb package, 1.57.1
deno 1.11.2
plugin 3.6.1
The text was updated successfully, but these errors were encountered:
test
Describe the bug
Use of Debugging does not work as per documentation, but I can get it to work as described below.
Ubuntu 21.04 (fully up to date, and reproduced in a newly installed Virtualbox instance)
vscode via deb package, 1.57.1
deno 1.11.2
plugin 3.6.1
To Reproduce
$cat main.ts
console.log("Hello, World!");
console.log("Hello, World!");
Deno.exit(); //<<< Needed to ensure the debugger does close correctly if/when a successful debug session is achieved.
Without launch.json (the Python Plugin works like this)
Using debug menu, using the Blue Run and Debug button, with and without breakpoint
Generally the debugger hangs and I get the dialog, Error processing Launch ....
With launch,json
A. No output unless a
"outputCapture": "std"
or
"console": "integratedTerminal"
is added
B: No breakpoint is hit if using
--inspect
C: Debugging only works if
--inspect-brk
is used, but of course, initial stop is on first line of code.
If I am doing something wrong, I don't know what it is!
Expected behavior
To work easily without launch.json, or with a correct launch.json automatically added using --inspect
Versions
Ubuntu 21.04 (fully up to date, and reproduced in a newly installed Virtualbox instance)
vscode via deb package, 1.57.1
deno 1.11.2
plugin 3.6.1
The text was updated successfully, but these errors were encountered: