Files
freeCodeCamp/api-server/.babelrc
Oliver Eyton-Williams 1c1d86922c refactor: simplify jest config (#42136)
* refactor: bring api jest tests to root

* refactor: pull client tests to root

* fix: remove ancient curriculum babelrc

* feat: run all jest tests at once

* fix: remove unused babelrcRoot

* chore: remove more jests
2021-05-16 18:08:04 +05:30

17 lines
317 B
Plaintext

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