I've got an Angular 6 project that I've generated using Angular CLI 6 (6.08).
I created separate libraries using the ng generate library [lib name] --prefix [lib prefix]
(approach outlined in this article: https://medium.com/@tomsu/how-to-build-a-library-for-angular-apps-4f9b38b0ed11).
I build each library using ng build [lib name]
and then serve my application using ng serve
.
However, when I view the source in Chrome Dev Tools, my libraries don't have source maps.
I've tried building each library using ng build [lib name] --source-map
(as specified here: https://github.com/angular/angular-cli/wiki/build), but I think that's only for building that application, not libraries.
Does anyone know what I'm doing wrong have an alternative solution?
To view the source code of the angular library in the consuming app. We need to do the following 2 points:
To enable source maps when when building the angular library.
In angular.json
under, projects -> library_name -> architect -> build -> options
Enable source maps:
"sourceMap": {
"scripts": true,
"styles": true,
"vendor": true
}
To enable source maps + vendorSourceMap when building the consuming app.
In angular.json
under, projects -> projctName -> architect -> build
Set sourceMap
to true
:
"sourceMap": true
In angular.json
under projects -> projctName -> serve -> options
Set vendorSourceMap
to true
:
"vendorSourceMap": true
Finally run the consuming app using the command:
ng serve --vendor-source-map
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With