VSCode Auto-Debug NodeJS
[#note]
VSCode has a useful setting where it will automatically attach a debugger to NodeJS processes (or Bun) started from VSCode. This saves having to restart your process to add a breakpoint sometimes.
Add this to your setting.json to enable auto-attaching the debugger:
"debug.javascript.autoAttachFilter": "always",
Back