-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup-esm5.conf.js
50 lines (50 loc) · 1.71 KB
/
rollup-esm5.conf.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
39
40
41
42
43
44
45
46
47
48
49
50
export default {
input: 'tmp/esm5/ngx-example-library.js',
output: {
file: 'dist/esm5/ngx-example-library.js',
format: 'es'
},
globals: {
// Angular dependencies
'@angular/animations': 'ng.animations',
'@angular/core': 'ng.core',
'@angular/common': 'ng.common',
'@angular/common/http': 'ng.common.http',
'@angular/cdk': 'ng.cdk',
'@angular/cdk/a11y': 'ng.cdk.a11y',
'@angular/cdk/accordion': 'ng.cdk.accordion',
'@angular/cdk/bidi': 'ng.cdk.bidi',
'@angular/cdk/coercion': 'ng.cdk.coercion',
'@angular/cdk/collections': 'ng.cdk.collections',
'@angular/cdk/keycodes': 'ng.cdk.keycodes',
'@angular/cdk/layout': 'ng.cdk.layout',
'@angular/cdk/observers': 'ng.cdk.observers',
'@angular/cdk/overlay': 'ng.cdk.overlay',
'@angular/cdk/platform': 'ng.cdk.platform',
'@angular/cdk/portal': 'ng.cdk.portal',
'@angular/cdk/rxjs': 'ng.cdk.rxjs',
'@angular/cdk/scrolling': 'ng.cdk.scrolling',
'@angular/cdk/stepper': 'ng.cdk.stepper',
'@angular/cdk/table': 'ng.cdk.table',
'@angular/forms': 'ng.forms',
'@angular/http': 'ng.http',
'@angular/router': 'ng.router',
'@angular/platform-browser': 'ng.platform-browser',
'bowser': 'bowser',
'ng2-page-scroll': 'ng2PageScroll',
'rxjs/Subject': 'Rx',
'rxjs/Observable': 'Rx',
'rxjs/Rx': 'Rx'
},
external: [
'@angular/core',
'@angular/common',
'@angular/platform-browser',
'@angular/router',
'bowser',
'ng2-page-scroll',
'rxjs/Rx',
'rxjs/Subject',
'rxjs/Observable'
]
};