Just add the DatePipe in the NgModule providers section in your app.module.ts file.
import { DatePipe } from '@angular/common';
...
@NgModule({
declarations: [...],
imports: [...],
providers: [
DatePipe,
...
],
bootstrap: [AppComponent]
})