dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_AppModule cluster_AppModule_declarations cluster_AppModule_bootstrap cluster_AppModule_imports AppComponent AppComponent AppModule AppModule AppComponent->AppModule AppComponent AppComponent AppModule->AppComponent AppRoutingModule AppRoutingModule AppRoutingModule->AppModule

File

test/fixtures/sample-files-extends/src/app/app.module.ts

Description

The bootstrapper module

Declarations

Bootstrap

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { HttpModule } from '@angular/http';

import { HomeModule } from './home/';

import { AppComponent } from './app.component';

import { TodoStore } from './shared/services/todo.store';

/* Routing Module */
import { AppRoutingModule } from './app-routing.module';
import { HTTP_INTERCEPTORS } from '@angular/common/http';

import { NoopInterceptor } from './shared/interceptors/noopinterceptor.interceptor';

/**
 * The bootstrapper module
 */
@NgModule({
    declarations: [AppComponent],
    imports: [HomeModule, AppRoutingModule],
    providers: [
        TodoStore,
        {
            provide: HTTP_INTERCEPTORS,
            useClass: NoopInterceptor,
            multi: true
        }
    ],
    bootstrap: [AppComponent]
})
export class AppModule {}

results matching ""

    No results matching ""