mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-08 09:43:42 +01:00
83 lines
2.9 KiB
TypeScript
83 lines
2.9 KiB
TypeScript
import 'core-js';
|
|
import 'zone.js/dist/zone';
|
|
|
|
import { ToasterModule } from 'angular2-toaster';
|
|
import { Angulartics2Module } from 'angulartics2';
|
|
import { Angulartics2GoogleAnalytics } from 'angulartics2/ga';
|
|
|
|
import { AppRoutingModule } from './app-routing.module';
|
|
import { ServicesModule } from './services/services.module';
|
|
|
|
import { NgModule } from '@angular/core';
|
|
import { FormsModule } from '@angular/forms';
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
|
|
|
import { AppComponent } from './app.component';
|
|
|
|
import { EnvironmentComponent } from './accounts/environment.component';
|
|
import { HintComponent } from './accounts/hint.component';
|
|
import { HomeComponent } from './accounts/home.component';
|
|
import { LockComponent } from './accounts/lock.component';
|
|
import { LoginComponent } from './accounts/login.component';
|
|
import { RegisterComponent } from './accounts/register.component';
|
|
import { TwoFactorOptionsComponent } from './accounts/two-factor-options.component';
|
|
import { TwoFactorComponent } from './accounts/two-factor.component';
|
|
import { TabsComponent } from './tabs.component';
|
|
import { CurrentTabComponent } from './vault/current-tab.component';
|
|
import { GroupingsComponent } from './vault/groupings.component';
|
|
|
|
import { ApiActionDirective } from 'jslib/angular/directives/api-action.directive';
|
|
import { AutofocusDirective } from 'jslib/angular/directives/autofocus.directive';
|
|
import { BlurClickDirective } from 'jslib/angular/directives/blur-click.directive';
|
|
import { BoxRowDirective } from 'jslib/angular/directives/box-row.directive';
|
|
import { FallbackSrcDirective } from 'jslib/angular/directives/fallback-src.directive';
|
|
import { StopClickDirective } from 'jslib/angular/directives/stop-click.directive';
|
|
import { StopPropDirective } from 'jslib/angular/directives/stop-prop.directive';
|
|
|
|
import { I18nPipe } from 'jslib/angular/pipes/i18n.pipe';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
BrowserModule,
|
|
BrowserAnimationsModule,
|
|
FormsModule,
|
|
AppRoutingModule,
|
|
ServicesModule,
|
|
Angulartics2Module.forRoot([Angulartics2GoogleAnalytics], {
|
|
pageTracking: {
|
|
clearQueryParams: true,
|
|
},
|
|
}),
|
|
ToasterModule,
|
|
],
|
|
declarations: [
|
|
ApiActionDirective,
|
|
AppComponent,
|
|
AutofocusDirective,
|
|
BlurClickDirective,
|
|
BoxRowDirective,
|
|
CurrentTabComponent,
|
|
EnvironmentComponent,
|
|
FallbackSrcDirective,
|
|
GroupingsComponent,
|
|
HomeComponent,
|
|
HintComponent,
|
|
I18nPipe,
|
|
LockComponent,
|
|
LoginComponent,
|
|
RegisterComponent,
|
|
StopClickDirective,
|
|
StopPropDirective,
|
|
TabsComponent,
|
|
TwoFactorOptionsComponent,
|
|
TwoFactorComponent
|
|
],
|
|
entryComponents: [
|
|
|
|
],
|
|
providers: [],
|
|
bootstrap: [AppComponent],
|
|
})
|
|
export class AppModule { }
|