blessing-skin-server/.babelrc
2018-07-31 22:58:35 +08:00

33 lines
630 B
Plaintext

{
"presets": [
["@babel/env", {
"modules": false,
"useBuiltIns": false,
"loose": true
}]
],
"plugins": [
"@babel/syntax-dynamic-import",
"@babel/proposal-optional-catch-binding",
["@babel/plugin-transform-runtime", {
"helpers": true,
"polyfill": false,
"regenerator": true,
"moduleName": "@babel/runtime"
}]
],
"env": {
"test": {
"presets": [
["@babel/env", {
"targets": { "node": "current" },
"ignoreBrowserslistConfig": true
}]
],
"plugins": [
"dynamic-import-node"
]
}
}
}