I am getting the error: Template parse errors: The pipe 'amDateFormat' could not be found Here is my app.module.ts import { NgModule } from '@angular/core'; ... import { MomentModule } from 'angular2-moment'; ... @NgModule({ declarations: [ MyApp ], imports: [ ... MomentModule, ... ], bootstrap: [IonicApp], entryComponents: [ MyApp ], providers: [ ... ] }) export class AppModule { } Then in service-booking-details.ts I am doing the following: import { Component} from '@angular/core'; import { IonicPage, NavController, NavParams} from 'ionic-angular'; import { MomentModule } from 'angular2