funquail/front/babel.config.js
2022-03-21 12:52:41 +01:00

17 lines
295 B
JavaScript

module.exports = {
presets: [
'@babel/preset-env',
],
plugins: [
'@babel/plugin-transform-runtime',
function () {
return {
visitor: {
MetaProperty(path) {
path.replaceWithSourceString('process')
},
},
}
},
],
}