You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In static-type-checking -> Using TypeScript with Create React App it says
Create React App supports TypeScript out of the box.
Well, it doesn't seem so.
I followed the instructions for creating a new project. create-react-app my-app --typescript
I converted App.jsx to App.tsx. There was only 1 error - no types for React. I installed types for React npm i @types/react
and then run npm start.
I got the following error:
While it's perfectly fine to expect a user to install "typescript" and the various type modules, i wouldn't say that it qualifies as "support out of the box" for typescript.