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
In this milestone it is now possible to launch the node debug target in the 'integrated terminal' which helps when developing node.js-based command line applications that read from input and/or need to control the terminal they are running in.
Since there are now three options where to run a node program (debug console, integrated terminal, external terminal), we've deprecated the launch.json boolean attribute externalConsole and introduced a new attribute console which accepts the following values: internalConsole, integratedTerminal, externalTerminal.
Please verify:
launching the debug target in the integrated terminal works. Make sure that passing arguments, environment variables, and 'cwd' work even if the values include spaces or quotes.
the other two console options internalConsole and externalConsole continue to work.
the new attribute console shows up in hover help and newly created launch.json uses it instead of the deprecated externalConsole.
the old externalConsole options still works if no console option is specified.
Please note:
The problem that every debug session creates a new terminal is already tracked here: #10940
The text was updated successfully, but these errors were encountered:
Test for #10574:
complexity: 4
In this milestone it is now possible to launch the node debug target in the 'integrated terminal' which helps when developing node.js-based command line applications that read from input and/or need to control the terminal they are running in.
Since there are now three options where to run a node program (debug console, integrated terminal, external terminal), we've deprecated the launch.json boolean attribute
externalConsole
and introduced a new attributeconsole
which accepts the following values:internalConsole
,integratedTerminal
,externalTerminal
.Please verify:
console
optionsinternalConsole
andexternalConsole
continue to work.console
shows up in hover help and newly created launch.json uses it instead of the deprecatedexternalConsole
.externalConsole
options still works if noconsole
option is specified.Please note:
The problem that every debug session creates a new terminal is already tracked here: #10940
The text was updated successfully, but these errors were encountered: