There is an application on Angular 6. How can I get a debugger for it so that the breakpoint is picked up without the debugger keyword?

Here are my configurations for the moment:

enter image description here

client folder with the project UI you want to configure.

dev script in package.json looks like this:

 "dev": "concurrently \"npm run server\" \"npm run client\"" 

I think I need to specify the Remote URL but what should it be there?

    0