Closed
Description
I'm working on project that wants to parse some code as TypeScript, get the corresponding ESTree AST, and then do some logic that requires both the TypeScript API objects and the converted ESTree output. Right now I'm directly importing @typescript-eslint/typescript-estree/dist/convert.js
, which makes me feel gross inside. Would it be reasonable to either expose that module in the typescript-estree
package or split it off into its own package?