digitalascetic / ngx-pica

@digitalascetic/ngx-pica is an Angular(LTS) module to resize images files in browse
36 stars 26 forks source link

RXJS Issue #46

Open MarkPhsd opened 3 years ago

MarkPhsd commented 3 years ago

I didn't do full research, but this immediately caused an issue with rxjs observable. I'm using Angular 11. If you want any more details I can reinstall it and provide info, but I didn't need this that bad.

Warning: Entry point '@digitalascetic/ngx-pica' contains deep imports into 'C:/Users/XXXX/source/repos/XXXX/node_modules/rxjs/Subject', 'C:/Users/XXXX/source/repos/XXXX/node_modules/rxjs/Observable'. This is probably not a problem, but may cause the compilation of entry points to be out of order.

odiakite229 commented 2 years ago

Create a file named 'ngcc.config.js' at your top-level project folder module.exports = { packages: { '@angular/core': { ignorableDeepImportMatchers: [ /rxjs\//, ] }, '@digitalascetic/ngx-pica': { ignorableDeepImportMatchers: [ /rxjs\//, ] }, }, }; Hope