I would like to attach Angular source code / source map to my generated Angular CLI project, so that I can debug directives like *ngIf
in Chrome.
Is it possible to somehow attach debugger into ng_if.ts
using some angular.json configuration / source map ...?
Or is there a setting to add source map in develop mode so that I can step through any 3rd party library with source map attached?
If I press Ctrl + O in Chrome and then type ngIf
or ng_if
there is no such file in the list menu.
Edit: How it looks like when vendor source maps are served (see accepted answer):
ng_if
sources with source maps for example. Thanks! – Madly