midi-player-demo / babel.config.js
Yann
test
78fee96
raw
history blame contribute delete
398 Bytes
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"],
}