After updating the imports for rxjs operators in my project to follow the new recommended syntax, I encountered an issue with the "do" operator. While switchMap and debounceTime were updated successfully like this:
import { switchMap, debounceTime } from 'rxjs/operators';
For the "do" operator, TypeScript gives me errors during code building unless I revert back to the older syntax pattern like so:
import 'rxjs/add/operator/do';
Is there something wrong with how I am importing or is the older pattern still necessary for the "do" operator?
Appreciate any advice! Thank you!