mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2024-12-21 06:19:38 +08:00
30 lines
555 B
Plaintext
30 lines
555 B
Plaintext
{
|
|
"presets": [
|
|
["@babel/preset-env", {
|
|
"modules": false,
|
|
"useBuiltIns": false,
|
|
"loose": true
|
|
}]
|
|
],
|
|
"plugins": [
|
|
"@babel/plugin-syntax-dynamic-import",
|
|
["@babel/plugin-transform-runtime", {
|
|
"helpers": true,
|
|
"regenerator": true
|
|
}]
|
|
],
|
|
"env": {
|
|
"test": {
|
|
"presets": [
|
|
["@babel/preset-env", {
|
|
"targets": { "node": "current" },
|
|
"ignoreBrowserslistConfig": true
|
|
}]
|
|
],
|
|
"plugins": [
|
|
"babel-plugin-dynamic-import-node"
|
|
]
|
|
}
|
|
}
|
|
}
|