AngularFire FirebaseListObservable missing .map function after RC0

Hi there,

Anyone experience missing .map function after upgraded to rc0.

I used to able to use .map like below

this.af.database.list(/items).map((item) => { item.field = ‘123’ });

Since upgraded to RC0, .map function seem to be missing from intellisense.

I’m using VS code and typescript 2

Any pointers?

Thanks

import 'rxjs/add/operator/map';

Thanks, this working