After upgrading to Angular 6.0 and Rxjs to 6.0 I receive the following compilation error:
Property \'do\' does not exist on type \'Observable\'.
Her
Just use in your typescript file:
import 'rxjs/add/operator/do';
as simple as that. Thanks.