我使用npx create-react-app client-app --use-npm --typescript
创建了一个react应用程序我希望使用typescript创建一个项目,但过一段时间后,它会创建一个使用index.js
和app.js
而不是index.tsx
和app.tsx
的项目。我的命令行有问题吗?
并且未创建文件tsconfig.json
感谢
正确的语法应该是npx create-react-app client-app --template typescript
。
请参阅https://create-react-app.dev/docs/adding-typescript/#installation.