一:
使用create-react-app
// 默认创建react+js的webpack打包项目
npm i create-react-app -g
create-react-app 项目名
// 创建ts项目打包项目
sudo npx create-react-app my-app --template typescript
二:
使用vite
npm create vite@latest
// 创建react-js-vite
npm create vite@latest my-vue-app -- --template react
// 创建react-ts-vite
npm create vite@latest my-vue-app -- --template react-ts