The following information applies when you use Visual Studio Code to debug applications that use character screens for input/output.
If the application being debugged contains any screen I/O, you need to interact with the application. You can use the integrated terminal to debug applications in the following scenarios:
To use the integrated terminal, add the following to the debug configuration file, launch.json, for the application to be debugged in Visual Studio Code:
"console": "integratedTerminal"
where the other options for the console are externalTerminal and externalConsole (Windows only).