I had this:

import {of, throwError} from 'rxjs'
import {switchMap, map} from 'rxjs/operators'

but the namespace was getting polluted, so I did this:

import * as op from "rxjs/operators";
import * as rx from "rxjs";

using using * for imports going to prevent build optimization for 
angular/webpack or?

-- 
You received this message because you are subscribed to the Google Groups 
"Angular and AngularJS discussion" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/angular/0bb985f7-ed15-4b89-91e2-005682ae4bb8n%40googlegroups.com.

Reply via email to