Spaces:
Running
Running
module.exports = { | |
presets: [ | |
[ | |
"@babel/preset-env", | |
{ | |
targets: { | |
browsers: [">0.25%", "not ie 11", "not op_mini all"], | |
}, | |
}, | |
], | |
["@babel/preset-typescript", { allowDeclareFields: true }], | |
[ | |
"@babel/preset-react", | |
{ | |
runtime: "automatic", | |
}, | |
], | |
], | |
plugins: ["lodash", "@emotion", "inline-react-svg"], | |
} | |