www/babel.config.js

17 lines
252 B
JavaScript
Raw Permalink Normal View History

2022-11-10 05:45:40 +03:00
module.exports = function (api) {
api.cache(true);
const presets = [
["@babel/preset-react"]
]
const plugins = [];
2023-04-24 20:42:54 +03:00
const options = {
babelrc: false,
configFile: false
};
2022-11-10 05:45:40 +03:00
return {
presets,
2023-04-24 20:42:54 +03:00
plugins,
options
2022-11-10 05:45:40 +03:00
};
}