1.npm install -g create-react-app
// 如果很久之前安装过,建议卸载重新安装 npm uninstall -g create-react-app
2.npx create-react-app my-app --template typescript
// 这样创建出来的项目就是基于TS的
3. cd my-app
4. yarn start
npm install -g create-react-app
npx create-react-app my-app --template typescript
cd my-app
yarn start