5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-03 12:50:19 +08:00
wails/runtime/js/babel.config.js
2019-07-12 10:12:15 +10:00

22 lines
301 B
JavaScript

/* eslint-disable */
module.exports = function (api) {
api.cache(true);
const presets = [
[
"@babel/preset-env",
{
"useBuiltIns": "entry",
"corejs": {
"version": 3,
"proposals": true
}
}
]
];
return {
presets,
};
}