forked from aurelia/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
51 lines (49 loc) · 1.92 KB
/
config.js
File metadata and controls
51 lines (49 loc) · 1.92 KB
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
System.config({
"paths": {
"*": "*.js",
"github:*": "jspm_packages/github/*.js",
"aurelia-framework/*": "dist/*.js",
"npm:*": "jspm_packages/npm/*.js"
}
});
System.config({
"map": {
"aurelia-binding": "github:aurelia/binding@0.3.2",
"aurelia-dependency-injection": "github:aurelia/dependency-injection@0.4.1",
"aurelia-loader": "github:aurelia/loader@0.3.3",
"aurelia-logging": "github:aurelia/logging@0.2.2",
"aurelia-metadata": "github:aurelia/metadata@0.3.0",
"aurelia-task-queue": "github:aurelia/task-queue@0.2.2",
"aurelia-templating": "github:aurelia/templating@0.8.4",
"github:aurelia/binding@0.3.2": {
"aurelia-metadata": "github:aurelia/metadata@0.3.0",
"aurelia-task-queue": "github:aurelia/task-queue@0.2.2"
},
"github:aurelia/dependency-injection@0.4.1": {
"aurelia-metadata": "github:aurelia/metadata@0.3.0",
"core-js": "npm:core-js@0.4.6"
},
"github:aurelia/loader@0.3.3": {
"aurelia-html-template-element": "github:aurelia/html-template-element@0.1.2",
"core-js": "npm:core-js@0.4.6",
"webcomponentsjs": "github:webcomponents/webcomponentsjs@0.5.4"
},
"github:aurelia/templating@0.8.4": {
"aurelia-binding": "github:aurelia/binding@0.3.2",
"aurelia-dependency-injection": "github:aurelia/dependency-injection@0.4.1",
"aurelia-html-template-element": "github:aurelia/html-template-element@0.1.2",
"aurelia-loader": "github:aurelia/loader@0.3.3",
"aurelia-logging": "github:aurelia/logging@0.2.2",
"aurelia-metadata": "github:aurelia/metadata@0.3.0",
"aurelia-path": "github:aurelia/path@0.4.1",
"aurelia-task-queue": "github:aurelia/task-queue@0.2.2",
"core-js": "npm:core-js@0.4.6"
},
"github:jspm/nodelibs-process@0.1.0": {
"process": "npm:process@0.10.0"
},
"npm:core-js@0.4.6": {
"process": "github:jspm/nodelibs-process@0.1.0"
}
}
});