How to debug Angular with VSCode?
Tested with Angular 5 / CLI 1.5.5 Install the Chrome Debugger Extension Create the launch.json (inside .vscode folder) Use my launch.json (see below) Create the tasks.json (inside .vscode folder) Use my tasks.json (see below) Press CTRL+SHIFT+B Press F5 launch.json for angular/cli >= 1.3 { “version”: “0.2.0”, “configurations”: [ { “name”: “Launch Chrome”, “type”: “chrome”, “request”: … Read more