Created
December 6, 2017 14:08
-
-
Save vitalets/67c8004e5f0c2185872b086888c8e2bb to your computer and use it in GitHub Desktop.
Mocha ES6 modules: webpack config v2
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.exports = { | |
entry: ['./setup.js', './run.js'], | |
output: { | |
filename: 'bundle.js', | |
}, | |
resolve: { | |
alias: { | |
'https://unpkg.com/[email protected]/chai.js': 'chai/chai.js' | |
} | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment