I am running Node.js in VS Code. I see output of console.log in the Debug Window.
console.log
Where does process.stdout.write go to? I can\'t find it i
process.stdout.write
Looking at issues with process.stdout.write the suggested fixes are adding these to your launch config:
"console": "internalConsole", "outputCapture": "std",
Especially the outputCapture entry is important.