UNPKG

@angular/platform-webworker-dynamic

Version:

Angular - library for using Angular in a web browser with web workers

63 lines (55 loc) 1.9 kB
/** * @license Angular v6.1.8 * (c) 2010-2018 Google, Inc. https://angular.io/ * License: MIT */ import { Version, COMPILER_OPTIONS, PLATFORM_ID, createPlatformFactory } from '@angular/core'; import { ɵPLATFORM_WORKER_UI_ID } from '@angular/common'; import { ResourceLoader } from '@angular/compiler'; import { ɵResourceLoaderImpl, ɵplatformCoreDynamic } from '@angular/platform-browser-dynamic'; /** * @license * Copyright Google Inc. All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ var VERSION = new Version('6.1.8'); /** * @license * Copyright Google Inc. All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ /** * @experimental API related to bootstrapping are still under review. */ var platformWorkerAppDynamic = createPlatformFactory(ɵplatformCoreDynamic, 'workerAppDynamic', [ { provide: COMPILER_OPTIONS, useValue: { providers: [{ provide: ResourceLoader, useClass: ɵResourceLoaderImpl, deps: [] }] }, multi: true }, { provide: PLATFORM_ID, useValue: ɵPLATFORM_WORKER_UI_ID } ]); /** * @license * Copyright Google Inc. All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ // This file only reexports content of the `src` folder. Keep it that way. /** * @license * Copyright Google Inc. All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ /** * Generated bundle index. Do not edit. */ export { platformWorkerAppDynamic, VERSION }; //# sourceMappingURL=platform-webworker-dynamic.js.map