Hi,
First of all: Thanks for this cool library.
We have some trouble building a bigger application with the Angular CLI. Digging deeper I saw you import Observables like this: import { Observable } from 'rxjs/Rx';. This kind of import statements leads to a bigger file size. Please see https://christianliebel.com/2017/07/import-rxjs-correctly/ for more details.
Could you please update your import statements to import { Observable } from 'rxjs/Observable'; and add the operators manually.
Thanks
Hi,
First of all: Thanks for this cool library.
We have some trouble building a bigger application with the Angular CLI. Digging deeper I saw you import Observables like this:
import { Observable } from 'rxjs/Rx';. This kind of import statements leads to a bigger file size. Please see https://christianliebel.com/2017/07/import-rxjs-correctly/ for more details.Could you please update your import statements to
import { Observable } from 'rxjs/Observable';and add the operators manually.Thanks