diff --git a/scripts/templates/component/module.ts.tmpl b/scripts/templates/component/module.ts.tmpl index 4f5419ce47..5c45472319 100644 --- a/scripts/templates/component/module.ts.tmpl +++ b/scripts/templates/component/module.ts.tmpl @@ -8,9 +8,6 @@ import { IonicModule } from 'ionic-angular'; ], imports: [ IonicModule.forChild($CLASSNAMEComponent) - ], - entryComponents: [ - $CLASSNAMEComponent ] }) export class $CLASSNAMEComponentModule {} diff --git a/scripts/templates/page/module.ts.tmpl b/scripts/templates/page/module.ts.tmpl index 06e7bee3b5..592f0590b7 100644 --- a/scripts/templates/page/module.ts.tmpl +++ b/scripts/templates/page/module.ts.tmpl @@ -8,9 +8,6 @@ import { IonicModule } from 'ionic-angular'; ], imports: [ IonicModule.forChild($CLASSNAME), - ], - entryComponents: [ - $CLASSNAME, ] }) export class $CLASSNAMEModule {} diff --git a/scripts/templates/tabs/module.ts.tmpl b/scripts/templates/tabs/module.ts.tmpl index 06e7bee3b5..592f0590b7 100644 --- a/scripts/templates/tabs/module.ts.tmpl +++ b/scripts/templates/tabs/module.ts.tmpl @@ -8,9 +8,6 @@ import { IonicModule } from 'ionic-angular'; ], imports: [ IonicModule.forChild($CLASSNAME), - ], - entryComponents: [ - $CLASSNAME, ] }) export class $CLASSNAMEModule {}