scinote-web/.babelrc

19 lines
312 B
Plaintext
Raw Normal View History

2017-07-12 22:41:55 +08:00
{
"presets": [
["env", {
"modules": false,
"targets": {
"browsers": "> 1%",
"uglify": true
},
"useBuiltIns": true
}]
2017-07-12 22:41:55 +08:00
],
2017-07-12 22:41:55 +08:00
"plugins": [
"syntax-dynamic-import",
"transform-object-rest-spread",
["transform-class-properties", { "spec": true }]
]
2017-07-12 22:41:55 +08:00
}