17 lines
419 B
Plaintext
17 lines
419 B
Plaintext
{
|
|
"presets": [[
|
|
"@babel/preset-env",
|
|
{
|
|
"useBuiltIns": "entry",
|
|
"targets": {
|
|
"esmodules": true,
|
|
"ie": 11
|
|
}
|
|
}
|
|
]],
|
|
"plugins": [
|
|
"@babel/plugin-syntax-dynamic-import",
|
|
"@babel/plugin-proposal-object-rest-spread"
|
|
// "@babel/plugin-transform-runtime" // 不使用 async/await 是为了减少打包体积
|
|
]
|
|
} |