Intellisense not working for typescript react.
I ran this to create a new Vite React project:
What I did:
But the type sensing was wrong, there also was no
But the type sensing is still wrong, for very simple code like
VsCode does not detect count or setCount to be of type number, and it complains that useState has no type argument.
What I did:
But the type sensing was wrong, there also was no
deno.json so i created one:But the type sensing is still wrong, for very simple code like
const [count, setCount] = useState<number>(0);VsCode does not detect count or setCount to be of type number, and it complains that useState has no type argument.
