-
Notifications
You must be signed in to change notification settings - Fork 30
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
Usage in a preact/compat codebase with TypeScript #46
Comments
preact/compat
codebase with TypeScript
Hello, you could try what WMR does:
|
Hi @danielweck, Thanks for the response to my issue. I've since moved to a solution implemented with Nevertheless, in a |
That's a good point, and I must admit using pure Preact myself, so I am not not 100% sure the JSX typing trick works. |
This might not be directly an issue, but I'm looking for some advice.
I'm trying to use this package (
[email protected]
) in a Next.js codebase set up withpreact/compat
as detailed in the using-preact example. I've also got TypeScript configured, with the followingtsconfig
:I haven't followed the advice to add
"jsxImportSource": "preact",
from the Preact TS docs as that causes hundreds of errors in our codebase. I'm guessing that would be beneficial in a 'pure' Preact codebase, but isn't useful here. (If you can confirm this hunch, that would be great).Now, the issue here is that, when I try to use
<Markup />
in my JSX, I'm getting the following TS error:ElementClass
is defined in@types/react
, likely because the TS compiler (erroneously) figures that (the return value of) any component used in JSX should extendJSX.ElementClass
. I'm by no means a very experienced TS user, so this is a best guess.Now, I've tried to monkey patch the type of
Markup
like this by overwriting the keys the TS compiler complains about in my own code:Unfortunately, that doesn't work either as it doesn't seem to be possible to extend classes like this. Now I could probably just go
const Markup = BaseMarkup as any;
and call it a day, but I would like to find a way to accurately type this for my codebase, if at all possible so we can keep code completion in our editors. Is it possible to get this typed correctly somehow?The text was updated successfully, but these errors were encountered: