You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
457 B
26 lines
457 B
{
|
|
"presets": [
|
|
[
|
|
"@babel/preset-env",
|
|
{
|
|
"loose": false,
|
|
"modules": "commonjs",
|
|
"spec": true,
|
|
"useBuiltIns": false,
|
|
"debug": false
|
|
}
|
|
]
|
|
],
|
|
"plugins": [
|
|
"@babel/plugin-transform-property-mutators",
|
|
[
|
|
"@babel/plugin-transform-runtime",
|
|
{
|
|
"corejs": false,
|
|
"helpers": false,
|
|
"regenerator": false,
|
|
"useESModules": false
|
|
}
|
|
]
|
|
]
|
|
}
|
|
|