Skip to content

Instantly share code, notes, and snippets.

@vitalets
Created December 6, 2017 14:08
Show Gist options
  • Save vitalets/67c8004e5f0c2185872b086888c8e2bb to your computer and use it in GitHub Desktop.
Save vitalets/67c8004e5f0c2185872b086888c8e2bb to your computer and use it in GitHub Desktop.
Mocha ES6 modules: webpack config v2
module.exports = {
entry: ['./setup.js', './run.js'],
output: {
filename: 'bundle.js',
},
resolve: {
alias: {
'https://unpkg.com/chai@4.1.2/chai.js': 'chai/chai.js'
}
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment