RSS Git Download  Clone
Raw View History
Blames found: 13 Mode: application/typescript Binary: false


Hang on, we reloading big blames...
import { NgModule, CUSTOM_ELEMENTS_SCHEMA, } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { CorifeusMaterialModule } from 'corifeus-web-material'
import {Page } from './page'; import {
CompileModule,
} from '../../../src'; @NgModule({ imports: [ BrowserModule,
CorifeusMaterialModule,
CompileModule.forRoot({ module: {
schemas: [CUSTOM_ELEMENTS_SCHEMA], declarations: [],
imports: [ CorifeusMaterialModule ],
} })
], declarations: [ Page, ], providers: [ ], bootstrap: [ Page ] }) export class Module { };