playing around with the newly released VSCode Editor/IDE. I wanted to try out debugging on a very basic Node.JS CLI application, which uses the "prompt" npm package:
prompt.start();
prompt.get(schema, function (err, result) { ...
When I set some breakpoints and start the app debugging, VSCode just steps over the prompt.get() and hangs in the debug process until I force to stop it, which ends in an error "OpenDebug process has terminated unexpectedly".
I expected VSCode to open up a shell that I can interact with.
My guess is that it's just not implemented the right way yet, but probably I just couldn't figure it out...