blessing-skin-server/.babelrc
2018-07-30 09:45:15 +08:00

23 lines
391 B
Plaintext

{
"presets": [
["@babel/env", {
"modules": false,
"useBuiltIns": "usage"
}]
],
"plugins": [
"@babel/syntax-dynamic-import",
"@babel/proposal-optional-catch-binding"
],
"env": {
"test": {
"presets": [
["@babel/env", {
"targets": { "node": "current" },
"ignoreBrowserslistConfig": true
}]
]
}
}
}