Breakpoints don't stop in Cursor; same code stops in VS Code

I have a workspace with multiple projects for a typescript node project. In VS Code, my breakpoints work and the code halts at the breakpoints when debugging. None of the breakpoints work in Cursor though. It’s using the exact same files (launch.json, tasks.json etc). It has the exact same extensions.

Perhaps there is some related debug setting in VS Code that I need to set in Cursor?

Okay - answered my own question. It seems that
debug.javascript.autoattachfilter

defaults to ‘disabled’ in Cursor. Setting to ‘smart’ did the trick.

1 Like