mirror of
https://github.com/dborth/vbagx.git
synced 2024-11-22 18:49:18 +01:00
12 lines
182 B
JavaScript
12 lines
182 B
JavaScript
|
module.exports = {
|
||
|
presets: [
|
||
|
'@babel/preset-react',
|
||
|
['@babel/preset-env', {
|
||
|
modules: false,
|
||
|
}],
|
||
|
],
|
||
|
plugins: [
|
||
|
'@babel/plugin-transform-runtime',
|
||
|
],
|
||
|
};
|