如果是最新的1.22
-
方案一 回退版本到1.21.1 https://code.visualstudio.com/updates/v1_21
-
方案二 退而求其次, 更改debug配置, 待官方或egg調試插件ok了再改回去
"runtimeArgs": [ "run", "debug", "--", "--inspect" // 而不是--inspect-brk ],
但是這樣對於項目啟動期間的debugger無法捕捉到, 具體看官方inspect區別
If you want to attach the VS Code debugger to a Node.js program, launch Node.js in VS Code’s integrated terminal as follows: node --inspect program.js or if the program should not start running but must wait for the debugger to attach: node --inspect-brk program.js