forked from community/device-mgt-core
11 lines
230 B
11 lines
230 B
5 years ago
|
module.exports = function (api) {
|
||
|
api.cache(true);
|
||
|
const presets = [ "@babel/preset-env",
|
||
|
"@babel/preset-react" ];
|
||
|
const plugins = ["@babel/plugin-proposal-class-properties"];
|
||
|
|
||
|
return {
|
||
|
presets,
|
||
|
plugins
|
||
|
};
|
||
|
};
|