-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsystemjs.config.js
49 lines (46 loc) · 1.64 KB
/
systemjs.config.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
SystemJS.config({
paths: {
'npm:': 'node_modules/'
},
map: {
ts: 'npm:plugin-typescript/lib',
typescript: 'npm:typescript',
'@angular/animations': 'npm:@angular/animations/bundles/animations.umd.js',
'@angular/animations/browser': 'npm:@angular/animations/bundles/animations-browser.umd.js',
'@angular/common': 'npm:@angular/common/bundles/common.umd.js',
'@angular/core': 'npm:@angular/core/bundles/core.umd.js',
'@angular/compiler': 'npm:@angular/compiler/bundles/compiler.umd.js',
'@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',
'@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
'@angular/platform-browser/animations': 'npm:@angular/platform-browser/bundles/platform-browser-animations.umd.js',
'@angular/http': 'npm:@angular/http/bundles/http.umd.js',
'@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',
'@angular/material': 'npm:@angular/material/bundles/material.umd.js',
rxjs: 'npm:rxjs',
'od-virtualscroll': 'npm:od-virtualscroll/dist/bundle/od-virtualscroll.umd.js',
'od-vsdebug': 'npm:od-vsdebug/dist/bundle/od-vsdebug.umd.js'
},
packages: {
ts: {main: 'plugin.js'},
typescript: {
main: 'lib/typescript.js',
meta: {
'lib/typescript.js': {
'exports': 'ts'
}
}
},
src: {
main: 'main.ts',
defaultExtension: 'ts',
meta: {'*.ts': {loader:'ts'}}
},
rxjs: {
defaultExtension: 'js'
}
},
transpiler: 'ts',
typescriptOptions: {
tsconfig: '../../../tsconfig.json'
}
});