2015-12-15 17:54:16 +01:00
|
|
|
System.config({
|
2015-12-17 11:46:10 +01:00
|
|
|
defaultJSExtenions: true,
|
2015-12-17 19:18:30 +01:00
|
|
|
baseURL: 'public',
|
2015-12-15 17:54:16 +01:00
|
|
|
paths: {
|
2016-03-07 18:03:45 +01:00
|
|
|
'remarkable': 'vendor/npm/remarkable/dist/remarkable.js',
|
2016-02-21 16:44:11 +01:00
|
|
|
'tether': 'vendor/npm/tether/dist/js/tether.js',
|
2016-04-07 19:47:48 -04:00
|
|
|
'eventemitter3': 'vendor/npm/eventemitter3/index.js',
|
2016-02-21 18:08:44 +01:00
|
|
|
'tether-drop': 'vendor/npm/tether-drop/dist/js/drop.js',
|
2015-12-17 19:18:30 +01:00
|
|
|
'moment': 'vendor/moment.js',
|
|
|
|
|
"jquery": "vendor/jquery/dist/jquery.js",
|
|
|
|
|
'lodash-src': 'vendor/lodash.js',
|
|
|
|
|
"lodash": 'app/core/lodash_extended.js',
|
|
|
|
|
"angular": "vendor/angular/angular.js",
|
|
|
|
|
"bootstrap": "vendor/bootstrap/bootstrap.js",
|
|
|
|
|
'angular-route': 'vendor/angular-route/angular-route.js',
|
|
|
|
|
'angular-sanitize': 'vendor/angular-sanitize/angular-sanitize.js',
|
|
|
|
|
"angular-ui": "vendor/angular-ui/ui-bootstrap-tpls.js",
|
|
|
|
|
"angular-strap": "vendor/angular-other/angular-strap.js",
|
|
|
|
|
"angular-dragdrop": "vendor/angular-native-dragdrop/draganddrop.js",
|
|
|
|
|
"angular-bindonce": "vendor/angular-bindonce/bindonce.js",
|
|
|
|
|
"spectrum": "vendor/spectrum.js",
|
|
|
|
|
"bootstrap-tagsinput": "vendor/tagsinput/bootstrap-tagsinput.js",
|
2015-12-16 12:21:13 +01:00
|
|
|
"jquery.flot": "vendor/flot/jquery.flot",
|
|
|
|
|
"jquery.flot.pie": "vendor/flot/jquery.flot.pie",
|
|
|
|
|
"jquery.flot.selection": "vendor/flot/jquery.flot.selection",
|
|
|
|
|
"jquery.flot.stack": "vendor/flot/jquery.flot.stack",
|
|
|
|
|
"jquery.flot.stackpercent": "vendor/flot/jquery.flot.stackpercent",
|
|
|
|
|
"jquery.flot.time": "vendor/flot/jquery.flot.time",
|
|
|
|
|
"jquery.flot.crosshair": "vendor/flot/jquery.flot.crosshair",
|
2016-04-22 14:55:35 +02:00
|
|
|
"jquery.flot.fillbelow": "vendor/flot/jquery.flot.fillbelow",
|
|
|
|
|
"jquery.flot.gauge": "vendor/flot/jquery.flot.gauge"
|
2015-12-15 17:54:16 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
packages: {
|
2015-12-17 11:46:10 +01:00
|
|
|
app: {
|
|
|
|
|
defaultExtension: 'js',
|
|
|
|
|
},
|
2015-12-17 16:30:53 +01:00
|
|
|
vendor: {
|
|
|
|
|
defaultExtension: 'js',
|
|
|
|
|
},
|
2015-12-22 11:46:28 +01:00
|
|
|
plugins: {
|
|
|
|
|
defaultExtension: 'js',
|
|
|
|
|
},
|
2015-12-21 16:34:18 +01:00
|
|
|
test: {
|
|
|
|
|
defaultExtension: 'js',
|
|
|
|
|
},
|
2015-12-15 17:54:16 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
map: {
|
2016-02-10 11:54:17 +01:00
|
|
|
text: 'vendor/plugin-text/text.js',
|
|
|
|
|
css: 'app/core/utils/css_loader.js'
|
2015-12-16 17:01:34 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
meta: {
|
|
|
|
|
'vendor/angular/angular.js': {
|
2015-12-21 10:02:39 +01:00
|
|
|
format: 'global',
|
2015-12-16 17:01:34 +01:00
|
|
|
deps: ['jquery'],
|
|
|
|
|
exports: 'angular',
|
2015-12-17 16:30:53 +01:00
|
|
|
},
|
2016-04-07 19:47:48 -04:00
|
|
|
'vendor/npm/eventemitter3/index.js': {
|
|
|
|
|
format: 'cjs',
|
|
|
|
|
exports: 'EventEmitter'
|
|
|
|
|
},
|
2015-12-15 17:54:16 +01:00
|
|
|
}
|
|
|
|
|
});
|