mirror of
https://github.com/dborth/vbagx.git
synced 2024-11-22 10:39: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',
|
|
],
|
|
};
|