I had a relatively hard time working out how to create a new React app with the built-in TypeScript support. I looked here: - [README](https://github.com/facebook/create-react-app/blob/49e258b4a6d04fb7e3542d7a060c6dcad4093564/README.md) - [docs / Getting Started](https://github.com/facebook/create-react-app/blob/49e258b4a6d04fb7e3542d7a060c6dcad4093564/docusaurus/docs/getting-started.md) - [docs / Adding TypeScript](https://github.com/facebook/create-react-app/blob/49e258b4a6d04fb7e3542d7a060c6dcad4093564/docusaurus/docs/adding-typescript.md) No mention there. Finally, [in the changelog](https://github.com/facebook/create-react-app/blob/49e258b4a6d04fb7e3542d7a060c6dcad4093564/CHANGELOG.md#210-october-29-2018), I found what I was looking for: ``` npx create-react-app my-app --typescript ``` I think that all three places mentioned above should be updated, mentioning this flag. If you agree, I'd prepare a PR.