-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsystemjs.config.js
More file actions
20 lines (20 loc) · 877 Bytes
/
systemjs.config.js
File metadata and controls
20 lines (20 loc) · 877 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
System.config({
transpiler: 'typescript',
typescriptOptions: {emitDecoratorMetadata: true},
map: {
'app' : 'app',
'rxjs': 'node_modules/rxjs',
'@angular' : 'node_modules/@angular'
},
packages: {
'app' : {main: 'main.ts', defaultExtension: 'ts'},
'rxjs' : {main: 'index.js'},
'@angular/core' : {main: 'index.js'},
'@angular/common' : {main: 'index.js'},
'@angular/compiler' : {main: 'index.js'},
'@angular/router' : {main: 'index.js'},
'@angular/forms' : {main: 'index'},
'@angular/platform-browser' : {main: 'index.js'},
'@angular/platform-browser-dynamic': {main: 'index.js'}
}
});