要使用 TypeScript 启动新的 Create React App 项目,您可以运行:
npx create-react-app my-app --template typescript
或
yarn create react-app my-app --template typescript
如果您之前通过
npm install -g create-react-app
全局安装了 create-react-app,我们建议您使用
npm uninstall -g create-react-app
或
2025-02-19 11:41:09