How to debug the authentication module in VSCode?

Hello,
I’ve been trying to debug the authentication module for several months for a university project, but unfortunately without success until now. The debugger does not jump to the authentication points in the code.
Can you please help me to get the debugger running for the authentication module.
What does your VSCode launch.json file look like?
My launch.json file looks like this:

{
“configurations”: [
{

    "command": "yarn dsv",

    "name": "run yarn dsv",

    { "request": "launch",

    "type": "node-terminal"

},

]
}

Thanks for any help.
@dudanogueira