scinote-web/.babelrc

27 lines
455 B
Text
Raw Normal View History

2017-07-12 22:41:55 +08:00
{
"presets": [
2019-07-02 19:52:48 +08:00
[
"@babel/preset-env",
{
"modules": false,
"targets": {
"browsers": "> 1%",
"uglify": true
},
"useBuiltIns": true
}
],
"@babel/preset-flow"
2017-07-12 22:41:55 +08:00
],
"plugins": [
2019-07-02 19:52:48 +08:00
"@babel/plugin-syntax-dynamic-import",
"@babel/plugin-proposal-object-rest-spread",
[
"@babel/plugin-proposal-class-properties",
{
"spec": true
}
]
]
2017-07-12 22:41:55 +08:00
}