I am running Node.js in VS Code. I see output of console.log
in the Debug Window.
Where does process.stdout.write
go to? I can't find it in the Debug Console or any of the Output windows.
My launch.json is simply this:
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceFolder}/job.js"
}
]
}