30 lines
428 B
Text
30 lines
428 B
Text
|
{
|
||
|
"plugins": [
|
||
|
[
|
||
|
"@babel/plugin-transform-runtime",
|
||
|
{
|
||
|
"regenerator": true
|
||
|
}
|
||
|
],
|
||
|
[
|
||
|
"@babel/plugin-proposal-class-properties"
|
||
|
]
|
||
|
],
|
||
|
"presets": [
|
||
|
[
|
||
|
"@babel/preset-env",
|
||
|
{
|
||
|
"targets": {
|
||
|
"node": "current"
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
],
|
||
|
"env": {
|
||
|
"test": {
|
||
|
"plugins": [
|
||
|
"@babel/plugin-transform-modules-commonjs"
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
}
|