electron-distribution/.babelrc

18 lines
328 B
Plaintext
Raw Permalink Normal View History

2019-06-07 23:04:57 +08:00
{
"presets": [
["@babel/preset-env", {
"targets": {
"node": "current"
}
}]
],
"plugins": [
["@babel/plugin-proposal-decorators", {
"legacy": true
}],
["@babel/plugin-proposal-class-properties", {
"loose": true
}],
"@babel/plugin-proposal-optional-chaining"
]
}