export-from-ie8
When "export { foo } from './baz';" is used, it is incorrectly compiled by babel as "Object.defineProperty (...)", which causes the IE8 browser to go wrong, like: https://github.com/babel/babel/issues/4265. Using "export-from-ie8" will solve this problem.
Usage
Add export-from-ie8/loader into webpack.config.js
postLoaders: [
{
test: /\.(js|jsx)$/,
loader: 'export-from-ie8/loader'
}
]
Example
// Before ; // Afterexportsbar = _bazfoo;exportsfoo = _bazfoo;
Test
npm run test