-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathrollup.config.js
More file actions
22 lines (21 loc) · 723 Bytes
/
rollup.config.js
File metadata and controls
22 lines (21 loc) · 723 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
export default {
entry: './dist/store/@ngrx/store.es5.js',
dest: './dist/store/bundles/store.umd.js',
format: 'umd',
exports: 'named',
moduleName: 'ngrx.store',
globals: {
'@angular/core': 'ng.core',
'rxjs/Observable': 'Rx',
'rxjs/BehaviorSubject': 'Rx',
'rxjs/Subject': 'Rx',
'rxjs/Subscriber': 'Rx',
'rxjs/scheduler/queue': 'Rx.Scheduler',
'rxjs/operator/map': 'Rx.Observable.prototype',
'rxjs/operator/pluck': 'Rx.Observable.prototype',
'rxjs/operator/distinctUntilChanged': 'Rx.Observable.prototype',
'rxjs/operator/observeOn': 'Rx.Observable.prototype',
'rxjs/operator/scan': 'Rx.Observable.prototype',
'rxjs/operator/withLatestFrom': 'Rx.Observable'
}
}