Create a React app with TypeScript

In the past year, I have started using TypeScript quite a lot. I have also dabbled with React, and I have started to like building web apps with TypeScript.

Fortunately, it’s very easy use TypeScript while creating a new React app:

npx create-react-app my-app --template typescript

Or to create the app in the current directory:

npx create-react-app --template typescript .

source