disable-devtool/.babelrc
2022-01-05 23:43:28 +08:00

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 是为了减少打包体积
]
}