MDX: Don't use root babelrc by default

This commit is contained in:
Michael Shilman 2020-06-16 10:18:15 +08:00
parent fd954bfebd
commit 2b8f3884bb

View File

@ -14,17 +14,19 @@ const context = coreDirName.includes('node_modules')
: path.join(coreDirName, '../../node_modules'); // SB Monorepo
function createBabelOptions(babelOptions?: any, configureJSX?: boolean) {
if (!configureJSX) {
return babelOptions;
}
// for frameworks that are not working with react, we need to configure
// the jsx to transpile mdx, for now there will be a flag for that
// for more complex solutions we can find alone that we need to add '@babel/plugin-transform-react-jsx'
const babelPlugins = (babelOptions && babelOptions.plugins) || [];
const plugins = configureJSX
? [...babelPlugins, '@babel/plugin-transform-react-jsx']
: babelPlugins;
return {
// don't use the root babelrc by default (users can override this in babelOptions)
babelrc: false,
...babelOptions,
// for frameworks that are not working with react, we need to configure
// the jsx to transpile mdx, for now there will be a flag for that
// for more complex solutions we can find alone that we need to add '@babel/plugin-transform-react-jsx'
plugins: [...babelPlugins, '@babel/plugin-transform-react-jsx'],
plugins,
};
}