1
0
mirror of https://gitlab.nic.cz/turris/reforis/foris-js.git synced 2024-07-03 20:37:42 +00:00
foris-js/babel.config.js

15 lines
307 B
JavaScript
Raw Normal View History

2019-08-21 15:04:26 +00:00
module.exports = {
presets: [
2019-08-27 09:54:57 +00:00
["@babel/preset-env", {
targets: {
esmodules: true,
},
}],
"@babel/preset-react",
2019-08-21 15:04:26 +00:00
],
plugins: [
2019-08-27 09:54:57 +00:00
"@babel/plugin-syntax-export-default-from",
"@babel/plugin-transform-runtime",
],
2019-08-21 15:04:26 +00:00
};