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
I have a project that uses emotion's css prop and it needs to have this JSX pragma on top every file - /** @jsx jsx */
/** @jsx jsx */
eslint-plugin-tsdoc complains about the jsx pragma
eslint-plugin-tsdoc
ESLint: tsdoc-undefined-tag: The TSDoc tag "@jsx" is not defined in this configuration(tsdoc/syntax)
Is there a way to continue using this plugin while configuring it to not produce errors for jsx pragma?
The text was updated successfully, but these errors were encountered:
@xthilakx I've been able to solve this by just creating a tsdoc.json file in the same folder as my tsconfig.json file with @jsx as a defined tag.
tsdoc.json
tsconfig.json
@jsx
https://github.com/microsoft/tsdoc/tree/master/tsdoc-config
Sorry, something went wrong.
That is the intended solution. 👍
No branches or pull requests
I have a project that uses emotion's css prop and it needs to have this JSX pragma on top every file -
/** @jsx jsx */
eslint-plugin-tsdoc
complains about the jsx pragmaIs there a way to continue using this plugin while configuring it to not produce errors for jsx pragma?
The text was updated successfully, but these errors were encountered: