web-apps/vendor/framework7-react/babel.config.js

15 lines
352 B
JavaScript
Raw Normal View History

2020-08-13 10:39:46 +00:00
module.exports = {
presets: [
'@babel/preset-react',
['@babel/preset-env', {
modules: false,
}],
],
plugins: [
'@babel/plugin-transform-runtime',
'@babel/plugin-syntax-dynamic-import',
2020-09-29 18:57:01 +00:00
['@babel/plugin-proposal-decorators', {'legacy': true }],
2021-03-07 20:40:54 +00:00
['@babel/plugin-proposal-class-properties',{'loose':false}],
2020-08-13 10:39:46 +00:00
],
};