13 lines
225 B
JavaScript
13 lines
225 B
JavaScript
|
module.exports = {
|
||
|
presets: [
|
||
|
'@babel/preset-react',
|
||
|
['@babel/preset-env', {
|
||
|
modules: false,
|
||
|
}],
|
||
|
],
|
||
|
plugins: [
|
||
|
'@babel/plugin-transform-runtime',
|
||
|
'@babel/plugin-syntax-dynamic-import',
|
||
|
],
|
||
|
};
|