mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2024-12-03 05:50:25 +08:00
33 lines
630 B
Plaintext
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"
|
|
]
|
|
}
|
|
}
|
|
}
|