Resolve #8884 by transpiling acorn-jsx

This commit is contained in:
bpeab 2019-12-01 22:44:43 +01:00
parent 8561e7b95a
commit b28056354c

View File

@ -44,6 +44,18 @@ export function webpack(webpackConfig: any = {}, options: any = {}) {
...module,
rules: [
...(module.rules || []),
{
test: /\.js$/,
include: /node_modules\/acorn-jsx/,
use: [
{
loader: 'babel-loader',
options: {
presets: [[require.resolve('@babel/preset-env'), { modules: 'commonjs' }]],
},
},
],
},
{
test: /\.(stories|story).mdx$/,
use: [