Skip to content
Snippets Groups Projects
  • Nathan Hertz's avatar
    ffcc0f03
    Beginnings of capability request status page: · ffcc0f03
    Nathan Hertz authored
    - Two new `npm` packages (not including deps): `eslint` (linter for TypeScript code) and `prettier` (multi-language web-stack code formatter)
    - New workspaces component: `capability-request` which is where the work for the page is being done
    ffcc0f03
    History
    Beginnings of capability request status page:
    Nathan Hertz authored
    - Two new `npm` packages (not including deps): `eslint` (linter for TypeScript code) and `prettier` (multi-language web-stack code formatter)
    - New workspaces component: `capability-request` which is where the work for the page is being done
app.module.ts 1.13 KiB
import { BrowserModule } from "@angular/platform-browser";
import { BrowserAnimationsModule } from "@angular/platform-browser/animations";
import { ReactiveFormsModule } from "@angular/forms";
import { NgModule } from "@angular/core";
import { HttpClientModule } from "@angular/common/http";

import { AppComponent } from "./app.component";
import { NgbModule } from "@ng-bootstrap/ng-bootstrap";
import { WebAnalyticsService } from "./web-analytics/web-analytics.service";

import { HeaderComponent } from "./header/header.component";
import { FooterComponent } from "./footer/footer.component";

import { AppRoutingModule } from "./app-routing.module";
import { SplashComponent } from "./splash/splash.component";
import { SharedModule } from "./shared/shared.module";

@NgModule({
  declarations: [AppComponent, HeaderComponent, FooterComponent, SplashComponent],
  entryComponents: [],
  imports: [
    BrowserModule,
    BrowserAnimationsModule,
    ReactiveFormsModule,
    NgbModule,
    AppRoutingModule,
    HttpClientModule,
    SharedModule,
  ],
  providers: [WebAnalyticsService],
  bootstrap: [AppComponent],
})
export class AppModule {}