I'm not using babel to transpile the code but only babel-eslint to allow linting the code. I went on the >11 version as nodejs 14.3released a working top level await with a flag and i couldn't make it work with babel-eslint 10.
By upgrading to babel-eslint 11 i now have to install every babel plugin to use experimental features even though they are supported by node. That was not the case before 11
Support for the experimental syntax 'importMeta' isn't currently enabled
same for static class properties etc
Question
Is there a way to include all features like the 10 behavior without installing many plugins while still using top level await ?
I'm not using babel to transpile the code but only babel-eslint to allow linting the code. I went on the
>11
version as nodejs14.3
released a working top level await with a flag and i couldn't make it work with babel-eslint10
.By upgrading to babel-eslint
11
i now have to install every babel plugin to use experimental features even though they are supported by node. That was not the case before11
Support for the experimental syntax 'importMeta' isn't currently enabled
same for
static class properties
etcQuestion
Is there a way to include all features like the
10
behavior without installing many plugins while still using top level await ?My eslint config
My current babel config