I\'m using the Chrome Debugger plugin in Visual Studio Code to debug an Angular application. After upgrading to use angular/cli@1.7.0, we can no longer hit breakpoints in t
For those coming across this the fix is to modify your launch.json sourceMapPathOverrides as follows:
"sourceMapPathOverrides": { "webpack:/*": "${webRoot}/*" }
This fixed it for me with the latest @angular/cli (version 1.7.3).
Answer was found here.