system.conf.js 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. System.config({
  2. defaultJSExtenions: true,
  3. baseURL: 'public',
  4. paths: {
  5. 'tether': 'vendor/npm/tether/dist/js/tether.js',
  6. 'tether-drop': 'vendor/npm/tether-drop/dist/js/drop.js',
  7. 'moment': 'vendor/moment.js',
  8. "jquery": "vendor/jquery/dist/jquery.js",
  9. 'lodash-src': 'vendor/lodash.js',
  10. "lodash": 'app/core/lodash_extended.js',
  11. "angular": "vendor/angular/angular.js",
  12. "bootstrap": "vendor/bootstrap/bootstrap.js",
  13. 'angular-route': 'vendor/angular-route/angular-route.js',
  14. 'angular-sanitize': 'vendor/angular-sanitize/angular-sanitize.js',
  15. "angular-ui": "vendor/angular-ui/ui-bootstrap-tpls.js",
  16. "angular-strap": "vendor/angular-other/angular-strap.js",
  17. "angular-dragdrop": "vendor/angular-native-dragdrop/draganddrop.js",
  18. "angular-bindonce": "vendor/angular-bindonce/bindonce.js",
  19. "spectrum": "vendor/spectrum.js",
  20. "bootstrap-tagsinput": "vendor/tagsinput/bootstrap-tagsinput.js",
  21. "jquery.flot": "vendor/flot/jquery.flot",
  22. "jquery.flot.pie": "vendor/flot/jquery.flot.pie",
  23. "jquery.flot.events": "vendor/flot/jquery.flot.events",
  24. "jquery.flot.selection": "vendor/flot/jquery.flot.selection",
  25. "jquery.flot.stack": "vendor/flot/jquery.flot.stack",
  26. "jquery.flot.stackpercent": "vendor/flot/jquery.flot.stackpercent",
  27. "jquery.flot.time": "vendor/flot/jquery.flot.time",
  28. "jquery.flot.crosshair": "vendor/flot/jquery.flot.crosshair",
  29. "jquery.flot.fillbelow": "vendor/flot/jquery.flot.fillbelow"
  30. },
  31. packages: {
  32. app: {
  33. defaultExtension: 'js',
  34. },
  35. vendor: {
  36. defaultExtension: 'js',
  37. },
  38. plugins: {
  39. defaultExtension: 'js',
  40. },
  41. test: {
  42. defaultExtension: 'js',
  43. },
  44. },
  45. map: {
  46. text: 'vendor/plugin-text/text.js',
  47. css: 'app/core/utils/css_loader.js'
  48. },
  49. meta: {
  50. 'vendor/angular/angular.js': {
  51. format: 'global',
  52. deps: ['jquery'],
  53. exports: 'angular',
  54. },
  55. }
  56. });