Angular 2 Error ( 'directives' does not exist in type 'Component' )
directives
was removed from component.
See the following: https://stackoverflow.com/a/39410642/5487673
The solution to the problem is simply to remove the directives
attribute from your component. So long as the components listed under your directives
attribute are declared at the NgModule
level then you should be right.