• Importing
  • imports-loader
  • file.js expects a global variable $ and you have a module jquery that should be used.
  • file.js expects its configuration on a global variable xConfig and you want it to be {value:123}.
  • file.js expect that this is the global context.
  • pluginProvidePlugin
  • Exporting
  • exports-loader
  • The file sets a variable in the global context with var XModule = ....
  • The file sets multiple variables in the global context with var XParser, Minimizer.
  • The file sets a global variable with XModule = ....
  • The file sets a property on windowwindow.XModule = ....
  • Fixing broken module styles
  • Disable some module styles
  • Broken AMD
  • Broken CommonJs
  • configuration option module.noParse
  • script-loader
  • Exposing
  • expose-loader
  • Expose file.js as XModule to the global context
  • Order of loaders