Visual Studio Code - Process exit with code 134

258 views Asked by At

I'm facing an annoying issue in VSC. I cannot run and debug any code via NodeJs, because I keep getting the same error in title.

I have already reintall 2-3 times VSC and I did the same with NodeJS and the problem persists. enter image description here

In terms of memory the computer is using 4.7MB of 7.5MB available. enter image description here

I've followed this stack overflow thread: node.exe exited with code 134 Visual Studio

But nothing worked.

How can I solve this issue, pls?

I have answered above. Well, I am expecting that someone really tell me what to do to solve the issue

1

There are 1 answers

1
NEOhitokiri On

Try removing any custom configurations in your Node.js installation. To identify the files you need to delete, use the following commands:

For current user configurations:

npm config get userconfig

For global configurations:

npm config get globalconfig

Apply the changes with:

npm config edit
npm config --global edit

This will help you identify and remove any custom settings in your Node.js installation.