1
0
Fork 0
mirror of synced 2024-07-02 21:10:43 +12:00
budibase/packages/client/babel.config.js

14 lines
216 B
JavaScript
Raw Normal View History

module.exports = {
presets: ["@babel/preset-env"],
sourceMaps: "inline",
retainLines: true,
plugins: [
[
"@babel/plugin-transform-runtime",
{
regenerator: true,
},
],
],
}