axios-miniprogram/.babelrc

20 lines
316 B
Plaintext
Raw Normal View History

2020-04-14 23:45:21 +08:00
{
"presets": [
"@babel/preset-typescript",
[
"@babel/preset-env",
{
"targets": {
"browsers": [
"ie >= 11"
]
},
"modules": false,
"loose": true
}
]
],
"plugins": [
2020-07-27 11:32:59 +08:00
"@babel/plugin-proposal-optional-chaining",
2020-04-14 23:45:21 +08:00
]
}