Убедитесь, что вы правильно импортировали, а затем оберните ваш .skip .pipe (,,,)
import { Observable, of, throwError } from 'rxjs';
import { map, filter, scan, skip } from 'rxjs/operators';
.pipe(
filter(() => this.registrationForm.valid),
map((registrationForm: any) => { // Form to-> ViewModel
this.registrationVm.username = registrationForm.username;
this.registrationVm.password = registrationForm.password;
this.registrationVm.passwordConfirm = registrationForm.passwordConfirm;
})
)
.subscribe();