feat(platform-browser-dynamic): export JitCompilerFactory (#20478)

Fixes #20125
PR Close #20478
This commit is contained in:
Olivier Combe
2017-11-15 18:22:23 +01:00
committed by Miško Hevery
parent 437a0446e2
commit d7a727cc07
17 changed files with 280 additions and 0 deletions

View File

@ -0,0 +1,17 @@
import {NgModule} from "@angular/core";
import {Component} from '@angular/core';
@Component({
selector: 'lazy-component',
template: 'Lazy-loaded component!'
})
export class LazyComponent {
constructor() {
}
}
@NgModule({
declarations: [LazyComponent]
})
export class LazyModule {
}