-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsystem-config.js
More file actions
22 lines (22 loc) · 998 Bytes
/
system-config.js
File metadata and controls
22 lines (22 loc) · 998 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
SystemJS.config({
// tell SystemJS which transpiler to use
transpiler: 'plugin-babel',
// tell SystemJS where to look for the dependencies
map: {
'plugin-babel': '../node_modules/systemjs-plugin-babel/plugin-babel.js',
'systemjs-babel-build': '../node_modules/systemjs-plugin-babel/systemjs-babel-browser.js',
// app start script
'app': './js/app.js',
'home': './js/controllers/home.js',
'browse': './js/controllers/browse.js',
'controllers': './js/controllers/controllers.js',
'templates': './js/data/templates.js',
'jquery-requester': './js/data/jquery-requester.js',
'requester': './js/data/requester.js',
'events': './js/controllers/events.js',
'register-controller': './js/controllers/register.js',
'restaurant-profile': './js/controllers/restaurant-profile.js',
'user-profile': './js/controllers/user-profile.js',
'map': './js/controllers/map.js'
}
});