Files
kami-parse-server/.babelrc
dblythy 2546cc8572 fix: Remove Node 12 and Node 17 support (#8279)
BREAKING CHANGE: This release removes Node 12 and Node 17 support
2022-11-10 16:15:55 +01:00

15 lines
294 B
Plaintext

{
"plugins": [
"@babel/plugin-transform-flow-strip-types",
"@babel/plugin-proposal-object-rest-spread"
],
"presets": [
["@babel/preset-env", {
"targets": {
"node": "14"
}
}]
],
"sourceMaps": "inline"
}