24 lines
		
	
	
		
			785 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			785 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/**
 | 
						|
 * @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
 | 
						|
 */
 | 
						|
 | 
						|
export default {
 | 
						|
  entry: '../../../dist/packages-dist/platform-webworker-dynamic/index.js',
 | 
						|
  dest:
 | 
						|
      '../../../dist/packages-dist/platform-webworker-dynamic/bundles/platform-webworker-dynamic.umd.js',
 | 
						|
  format: 'umd',
 | 
						|
  moduleName: 'ng.platformWebworkerDynamic',
 | 
						|
  globals: {
 | 
						|
    '@angular/core': 'ng.core',
 | 
						|
    '@angular/common': 'ng.common',
 | 
						|
    '@angular/compiler': 'ng.compiler',
 | 
						|
    '@angular/platform-browser': 'ng.platformBrowser',
 | 
						|
    '@angular/platform-browser-dynamic': 'ng.platformBrowserDynamic',
 | 
						|
    '@angular/platform-webworker': 'ng.platformWebworker',
 | 
						|
  }
 | 
						|
};
 |