We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This is something I might try to make a PR for soon...
For astx I have started building my own custom fork of ast-types from metadata in @babel/types so that it never lags behind what babel is able to parse.
astx
ast-types
@babel/types
However I'm running into #1230 because even if I build my own ast-types fork, I can't make recast use it.
recast
The only long-term solution to issues like #1230 is to be able to do something like
const ast = recast.parse(code, { parser: myConfiguredBabelParser, types: myConfiguredAstTypes, })
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
This is something I might try to make a PR for soon...
For
astx
I have started building my own custom fork ofast-types
from metadata in@babel/types
so that it never lags behind what babel is able to parse.However I'm running into #1230 because even if I build my own
ast-types
fork, I can't makerecast
use it.The only long-term solution to issues like #1230 is to be able to do something like
The text was updated successfully, but these errors were encountered: