-
-
Notifications
You must be signed in to change notification settings - Fork 119
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Copy missing globals from builtin
to es*
#140
Comments
Alternatively, we could also drop |
If anyone wants to work on this, see the initial attempt and feedback in #158. |
This already fixed, tests Lines 62 to 88 in d4082e2
About dripping "builtin", see #158 (comment) add #252 (comment), let's keep it. But do you think we should name it as "es-latest"? |
While investigating why eslint wouldn't pick up the
BigInt
globals, I noticed eslint does not use builtin like I previously assumed. I'd like to propose to copy any globals missing in eitheres5
,es2015
,es2017
but present inbuiltin
to one of those respective environments.Afterwards, I'd copy back any potential globals from the
es*
categories tobuiltin
so that it ends up containing all globals from those categories. Alternatively,builtin
could be generated dynamically inindex.js
, I think actually, that'd be my preference to avoid future inconsistency.The text was updated successfully, but these errors were encountered: