初始化一个 React/TypeScript
应用程序。运行以下面的命令:(名称中不能有大写字母)
npx create-react-app tsdemo --typescript
进入项目,安装typescript
yarn add typescript
此时yarn start运行程序会报错找不到react等包,需要安装包的ts版本,
npm install --save-dev typescript @types/react @types/react-dom ts-loader
此时文件里报错,无法使用 JSX,除非提供了 "--jsx" 标志
点击右下角版本号,点击“选择TypeScript版本”,选择“使用工作区版本”
运行项目 yarn start,编译出错找不到web-vitals包......,关于这个库是Create React App 包含的一个性能中继器,是来衡量和分析应用程序的性能。相关文档:Measuring Performance | Create React App
缺了他就装上呗
yarn add web-vitals
运行项目
yarn start
成功,嘻嘻🎉