About the ways that install Create React App project with TypeScript

Viewed 52

A book I got a year ago said...

npx create-react-app XXX --typescript

Current CRA Docs is saying...

npx create-react-app XXX --template typescript

Each result seemed the same. Something different or the former is just shortened way?

Thank you for your help :)

1 Answers

--typescript option has been deprecated. So use the --template

Related