I use the VSCode debugger and winston logger for NodeJS, but I cannot see the output from the application unless I specify the external terminal as follows:
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceFolder}/server.js",
"console": "externalTerminal"
}
]
Is there a way to see this output in the output window, for example, when I run the code using the CodeRunner plugin?
Josip source
share