updux/babel.config.js

14 lines
240 B
JavaScript
Raw Normal View History

2019-10-17 15:15:10 +00:00
module.exports = {
2019-10-19 17:11:30 +00:00
"plugins": [["@babel/plugin-proposal-pipeline-operator", { "proposal": "minimal" }]],
2019-10-17 15:15:10 +00:00
presets: [
[
'@babel/preset-env',
{
targets: {
node: 'current',
},
},
],
],
};