You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Babel adds complication to the build/dependencies. We aren't using it for anything important, looks like it is used to add decorators support.
Solution
Remove babel.
Remove support for decorators. (Bump major version of Nvim node-client)
Notes
$ npm ci
npm WARN deprecated @babel/[email protected]: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained
. Please use @babel/plugin-transform-class-properties instead.
The text was updated successfully, but these errors were encountered:
so I had expected it to translate packages/neovim/ to node8-compatible syntax, but seems like that isn't happening.
So if we want the "neovim" package to be compatible with an old target such as es2015, we currently can't rely on babel to polyfill es2022 libraries/features--rather we must avoid using es2022 libraries in our typescript code.
Problem
Babel adds complication to the build/dependencies. We aren't using it for anything important, looks like it is used to add decorators support.
Solution
Notes
The text was updated successfully, but these errors were encountered: