P粉8521147522023-08-18 10:21:07
您正在使用的 create-react-app
版本不支援 --template
選項。因此,--template typescript
沒有任何效果,您的專案中沒有產生 .tsx
檔案。
至於為什麼npx create-react-app
不使用支援--template
的版本,我懷疑您在本地全域安裝了舊版本的create-react- app
。我懷疑這是因為:
npx
可以運行本機安裝的套件(不僅限於遠端套件):
– npx
文件
#npx
會提示是否安裝遠端包,但您的輸出沒有顯示此提示。提示如下圖所示:
Need to install the following packages: create-react-app@x.y.z Ok to proceed? (y)
您可以透過檢查全域安裝的套件來驗證上述內容:
npm list -g
yarn global list
在驗證了您是否全域安裝了 create-react-app
之後,您可以卸載它:
npm uninstall -g create-react-app
yarn global remove create-react-app
#create-react-app
也建議您不要全域安裝版本: