eslint / typescript-eslint-parser

An ESLint custom parser which leverages TypeScript ESTree to allow for ESLint to lint TypeScript source code.
Other
915 stars 92 forks source link

Support generic JSX element (TS 2.9) #462

Closed ikatyang closed 6 years ago

ikatyang commented 6 years ago

What version of TypeScript are you using? 2.9.0-dev.20180405

What version of typescript-eslint-parser are you using? 14.0.0

What code were you trying to parse?

<MyComponent<number> data={12} />

What did you expect to happen? typeParameters exists in JSXOpeningElement node.

What happened? typeParameters is missing.