#Qwik plugin for IDEA Ultimate / IDEA Platform.
10 messages · Page 1 of 1 (latest)
is this not because of your jsxImportSource in the tsconfig?
that's what my guess would be, as that's what provides the autocomplete and types
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "@builder.io/qwik"
}
you can only have one, this is a limitation regardless of framework unfortunately.
You could also add
/** @jsxImportSource react */
in each react component file for the types
a bit tedious, but the only way to override