Created
January 26, 2017 22:07
-
-
Save artyomtrityak/385765aa8b5bdcb3e29ff3f337e11f5f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module: { | |
rules: [ | |
//Shim | |
{ | |
test: /handlebars/, | |
use: [ | |
'imports-loader?this=>window', | |
'exports-loader?Handlebars' | |
] | |
}, | |
{ | |
test: /jquery\-1\.9\.1\.js/, | |
use: [ | |
'imports-loader?this=>window', | |
'exports-loader?jQuery' | |
] | |
}, | |
{ | |
test: /backbone/, | |
use: [ | |
'expose-loader?Backbone', | |
'imports-loader?this=>window,jquery,underscore' | |
] | |
}, | |
{ | |
test: /underscore/, | |
loader: 'expose-loader?_' }, | |
{ | |
test: /chaplin/, | |
loader: 'imports-loader?this=>window,backbone' | |
}, | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment