my-notes-viewer/babel.config.json

26 lines
525 B
JSON
Raw Permalink Normal View History

2021-03-22 15:59:05 +01:00
{
"sourceMaps": "inline",
"inputSourceMap": true,
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "usage",
"corejs": {
"version": "3",
"proposals": true
},
"targets": ">0.5%, IE 11, not dead"
}
]
],
"plugins": [
[
"@babel/plugin-transform-spread",
{
"loose": true
}
]
]
}