Remove Babel plugin for ES Modules (#2975)

* Remove Babel plugin for ES Modules

Processing of ES Modules is executed by Webpack.
Don't have to do it on Babel side.

* Add plugin for test
This commit is contained in:
Yamagishi Kazutoshi 2017-05-14 19:59:40 +09:00 committed by Eugen Rochko
parent bc1a91f4cd
commit 882e4f5322
3 changed files with 9 additions and 11 deletions

View file

@ -5,6 +5,7 @@
"env",
{
"loose": true,
"modules": false,
"targets": {
"browsers": ["last 2 versions", "IE >= 11", "iOS >= 9"]
}
@ -33,6 +34,11 @@
"plugins": [
"lodash"
]
},
"test": {
"plugins": [
"transform-es2015-modules-commonjs"
]
}
}
}