0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-16 21:56:25 -05: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

18 lines
300 B
Text

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