Files
freeCodeCamp/api-server/.babelrc
Oliver Eyton-Williams 2648f75df6 fix: remove redundant babel plugin (#42234)
@babel/plugin-proposal-class-properties is now included in preset-env
2021-05-24 13:30:09 -07:00

16 lines
270 B
Plaintext

{
"presets": [
[
"@babel/preset-env",
{"targets": {
"node": 10
}}
]
],
"plugins": [
"babel-plugin-transform-function-bind",
"@babel/plugin-proposal-object-rest-spread",
"@babel/plugin-proposal-optional-chaining"
]
}