add webpack config

This commit is contained in:
Thomas Grainger 2016-11-28 23:58:14 +00:00
parent 09d515cbae
commit 9e478b31fe
No known key found for this signature in database
GPG key ID: 995EA0A029283160
14 changed files with 5125 additions and 13 deletions

16
.babelrc Normal file
View file

@ -0,0 +1,16 @@
{
"env": {
"test": {
"plugins": ["istanbul"]
}
},
"plugins": ["transform-runtime"],
"presets": [
["env", {
"targets": {
"node": "current"
}
}]
],
"sourceMaps": "inline"
}