Ever since the update yesterday to 1.47.0, when VSCode starts up, it gives me this output in the terminal (without a subsequent prompt which would allow me to type):
Debugger listening on ws://127.0.0.1:55430/f3f20387-0605-4a39-b807-77f02bea362f
For help, see: https://nodejs.org/en/docs/inspector
My otherwise usual procedure has been that I:
- Use WSL to navigate to the project directory I want to open, and the type
code . - I would then start up my server within the VSCode terminal (bash) by typing
npm run serve(package.json has"serve": "vue-cli-service serve").
However, I obviously can't do this now that there's some debugger and inspector continuously running? Here's a screenshot showing my blank launch.json and the terminal:
Can someone please tell me how to fix this? I have no idea what has gone wrong, but it only seems to happen with this particular project which I'm opening with code .
UPDATE
So I tried some more things.
- I ran
cp -rf testsite testfrontendwithin WSL - and then in the copied directory I deleted
package-lock.jsonandnode_modules - I subsequently ran
npm install - I then started VSCode by running
code .in the directory of the copied project within WSL
When vscode came up, the terminal wasn't showing. When I showed it (ctrl+`), the following lines ran automatically on their own:
I should mention that I don't get this error or any of the other aforementioned issues when I run npm run serve directly from WSL. I also don't get the aforementioned issues if I click the green WSL: Ubuntu button at the bottom left and then choose Remote-WSL: New Window and then run npm run serve:




