system.conf.js 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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.selection": "vendor/flot/jquery.flot.selection",
  24. "jquery.flot.stack": "vendor/flot/jquery.flot.stack",
  25. "jquery.flot.stackpercent": "vendor/flot/jquery.flot.stackpercent",
  26. "jquery.flot.time": "vendor/flot/jquery.flot.time",
  27. "jquery.flot.crosshair": "vendor/flot/jquery.flot.crosshair",
  28. "jquery.flot.fillbelow": "vendor/flot/jquery.flot.fillbelow"
  29. },
  30. packages: {
  31. app: {
  32. defaultExtension: 'js',
  33. },
  34. vendor: {
  35. defaultExtension: 'js',
  36. },
  37. plugins: {
  38. defaultExtension: 'js',
  39. },
  40. test: {
  41. defaultExtension: 'js',
  42. },
  43. },
  44. map: {
  45. text: 'vendor/plugin-text/text.js',
  46. css: 'app/core/utils/css_loader.js'
  47. },
  48. meta: {
  49. 'vendor/angular/angular.js': {
  50. format: 'global',
  51. deps: ['jquery'],
  52. exports: 'angular',
  53. },
  54. }
  55. });