Unbound breakpoints, debug with vcode

I am currently trying to debug my vuejs/meteor app with vcode and i need to put breakpoint on packages under node_modules directory. When i do that, i have unbound breakpoints. My launch.json file is the following:

{
        "type": "chrome",
        "request": "launch",
        "name": "vuejs: chrome",
        "url": "http://localhost:3000",
        "webRoot": "${workspaceFolder}",        
      }

I do not know how to solve it.
Thanks.

Do your breakpoints work in your regular code? If so, it’s probably because you have a (default) setting for VSCode to not watch node_modules folder.

You can try to turn that rule off, do a search from the left tool bar, and then click the 3 dots, the “Files to exclude” input box has an icon at right, clicking this turns off the exclusions. That might fix it for you.