Create React apps (with Typescript) with no build configuration.
- Getting Started – How to create a new app.
- User Guide – How to develop apps bootstrapped with react scripts ts.
This repo is fork from official create-react-app TypeScript implementation: https://github.com/wmonk/create-react-app-typescript.
The only deference is that file names are made static (no hashes included) for production builds. It may be useful if you are going to publish your app using Visual Studio or other tool which require static file names. See facebook/create-react-app#3855.
npm install -g create-react-app
create-react-app my-app --scripts-version=react-scripts-ts-static
cd my-app/
npm start