当前位置: 首页 > 工具软件 > react-tetris > 使用案例 >

react创建react+typescript项目

公冶阳德
2023-12-01

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
 类似资料: