I wanted to create a react app with a typescript template. Posting this as a reference for anyone interested in achieving the above.I am using node v21.4.0
The below steps worked for me :
Install create-react-app globally via the following command.
npm install -g create-react-app
then enter
create-react-app
command with--template
flag set totypescript
with your app name.create-react-app <your-app-name> --template typescript
Happy coding...