17 lines
610 B
JavaScript
17 lines
610 B
JavaScript
|
|
||
|
export default {
|
||
|
entry: '../../../dist/packages-dist/compiler/testing/index.js',
|
||
|
dest: '../../../dist/packages-dist/compiler/bundles/compiler-testing.umd.js',
|
||
|
format: 'umd',
|
||
|
moduleName: 'ng.compiler.testing',
|
||
|
globals: {
|
||
|
'@angular/core': 'ng.core',
|
||
|
'@angular/core/testing': 'ng.core.testing',
|
||
|
'@angular/compiler': 'ng.compiler',
|
||
|
'rxjs/Subject': 'Rx',
|
||
|
'rxjs/observable/PromiseObservable': 'Rx', // this is wrong, but this stuff has changed in rxjs b.6 so we need to fix it when we update.
|
||
|
'rxjs/operator/toPromise': 'Rx.Observable.prototype',
|
||
|
'rxjs/Observable': 'Rx'
|
||
|
}
|
||
|
}
|