Created
May 14, 2018 13:41
-
-
Save prigara/677dc5f6fc146bab6780e29f25940630 to your computer and use it in GitHub Desktop.
Unoptimized imports
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { BrowserModule } from '@angular/platform-browser'; | |
import { FormsModule } from '@angular/forms'; // FormsModule is no longer unused, so we can remove its import | |
import { AppComponent } from './app.component'; | |
import { NgModule } from '@angular/core'; | |
import { ApplicationInitStatus } from '@angular/core'; // this one imports from the same module as the one above, so they can be merged into one import |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment