This commit is contained in:
2021-03-22 15:59:05 +01:00
parent dd27483b16
commit 2ee7f650db
46 changed files with 5636 additions and 0 deletions

25
babel.config.json Normal file
View File

@@ -0,0 +1,25 @@
{
"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
}
]
]
}