-
Notifications
You must be signed in to change notification settings - Fork 28
/
rollup.config.es.js
38 lines (37 loc) · 1.46 KB
/
rollup.config.es.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
export default {
input: 'dist/ngrx-json-api.js',
output: {
format: 'es',
file: 'dist/FESM/ngrx-json-api.js',
sourcemap: true
},
exports: 'named',
name: 'ngrx.json.api',
globals: {
'@angular/core': 'ng.core',
'rxjs/Observable': 'Rx',
'rxjs/ErrorObservable': 'Rx.Observable',
'rxjs/observable/concat': 'Rx.Observable',
'rxjs/observable/throw': 'Rx.Observable',
'rxjs/observable/of': 'Rx.Observable',
'rxjs/operator/catch': 'Rx.Observable.prototype',
'rxjs/operator/combineLatest': 'Rx.Observable.prototype',
'rxjs/operator/concat': 'Rx.Observable.prototype',
'rxjs/operator/concatMap': 'Rx.Observable.prototype',
'rxjs/operator/concatAll': 'Rx.Observable.prototype',
'rxjs/operator/distinctUntilChanged': 'Rx.Observable.prototype',
'rxjs/operator/do': 'Rx.Observable.prototype',
'rxjs/operator/finally': 'Rx.Observable.prototype',
'rxjs/operator/filter': 'Rx.Observable.prototype',
'rxjs/operator/let': 'Rx.Observable.prototype',
'rxjs/operator/map': 'Rx.Observable.prototype',
'rxjs/operator/mapTo': 'Rx.Observable.prototype',
'rxjs/operator/mergeMap': 'Rx.Observable.prototype',
'rxjs/operator/switchMap': 'Rx.Observable.prototype',
'rxjs/operator/switchMapTo': 'Rx.Observable.prototype',
'rxjs/operator/take': 'Rx.Observable.prototype',
'rxjs/operator/toArray': 'Rx.Observable.prototype',
'rxjs/operator/withLatestFrom': 'Rx.Observable.prototype',
'lodash': 'lodash'
}
}