fix(compiler): do not autoinclude components declared as entry points (#10898)
This commit is contained in:
@ -51,7 +51,7 @@ class TodoApp {
|
||||
clearCompleted(): void { this.todoStore.removeBy((todo: Todo) => todo.completed); }
|
||||
}
|
||||
|
||||
@NgModule({bootstrap: [TodoApp], imports: [BrowserModule]})
|
||||
@NgModule({declarations: [TodoApp], bootstrap: [TodoApp], imports: [BrowserModule]})
|
||||
class ExampleModule {
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user