13 lines
236 B
JavaScript
Raw Normal View History

2016-04-27 11:28:22 -07:00
// #docregion
(function(global) {
// Use global packagePath if defined
var pkgPath = global.packagePath || '../node_modules/'; // path to packages
System.config({
packages: {
'js': { defaultExtension: 'js' },
}
});
})(this);