1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-13 03:35:52 +01:00
verdaccio/.babelrc
Juan Picado e381e4845a
fix: improve legacy nodejs support (#3981)
* fix: improve legacy nodejs support

* restore
2023-08-20 12:32:09 +02:00

19 lines
300 B
Plaintext

{
"presets": [
[
"@babel/env",
{
"targets": {
"node": 16
}
}
],
"@babel/typescript"
],
"ignore": ["**/*.d.ts"],
"plugins": [
"@babel/plugin-proposal-optional-chaining",
"@babel/plugin-proposal-nullish-coalescing-operator"
]
}