Sanshain / preact-boilerplate

preact boilerplate
0 stars 0 forks source link

jsx support Cannot find name 'React'. Did you mean 'preact'? #13

Closed Sanshain closed 1 week ago

Sanshain commented 1 week ago

Trouble:

vscode ts error on jsx files:

jsx support Cannot find name 'React'. Did you mean 'preact'?

How to resolve

Check in tsconfig.json following options:

    "jsx": "react-jsx", 
    "jsxImportSource": "preact",
    "allowJs": true, 
    "outDir": "./dist/built",    // or other dir

That's it