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


Hang on, we reloading big blames...
import { CompileService, CompileServiceConfig, } from "./CompileService";
import { CompileAttribute} from "./CompileAttribute";
import { NgModule, ModuleWithProviders } from '@angular/core';
import { Compiler } from '@angular/core'; import {JitCompilerFactory} from '@angular/compiler'; export function createJitCompiler () { return new JitCompilerFactory([{useDebug: false, useJit: true}]).createCompiler(); } // exports = component @NgModule({ imports: [ ], declarations: [ CompileAttribute, ], providers: [ CompileService, { provide: Compiler, useFactory: createJitCompiler}, ], exports: [ CompileAttribute, ], entryComponents: [ ] }) export class CompileModule {
static forRoot(config: CompileServiceConfig) : ModuleWithProviders { return { ngModule: CompileModule, providers: [ {provide: CompileServiceConfig, useValue: config } ] }; }
}