-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjspm.browser.js
47 lines (47 loc) · 1.46 KB
/
jspm.browser.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
SystemJS.config({
baseUrl: "/",
transpiler: "ts",
typescriptOptions: {
"module": "system",
"moduleResolution": "node",
"tsconfig": true
},
meta: {
"typescript": {
"exports": "ts"
}
},
paths: {
"npm:": "/jspm_packages/npm/",
"github:": "/jspm_packages/github/"
},
map: {
"app": "app",
"@angular/core": "npm:@angular/core/bundles/core.umd.js",
"@angular/common": "npm:@angular/common/bundles/common.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/http": "npm:@angular/http/bundles/http.umd.js",
"@angular/router": "npm:@angular/router/bundles/router.umd.js",
"@angular/forms": "npm:@angular/forms/bundles/forms.umd.js",
"@angular/upgrade": "npm:@angular/upgrade/bundles/upgrade.umd.js",
"rxjs": "npm:rxjs",
"angular2-in-memory-web-api": "npm:angular2-in-memory-web-api",
"ts": "npm:[email protected]/plugin.js",
"typescript": "npm:[email protected]/lib/typescript.js"
},
packages: {
"app": {
"main": "main.ts",
"defaultExtension": "js"
},
"rxjs": {
"defaultExtension": "js"
},
"angular2-in-memory-web-api": {
"main": "./index.js",
"defaultExtension": "js"
}
}
});