npx create-react-app project-name --template typescript
명령어를 실행해서 타입스크립트 설정을 추가하려고 했는데 아래와 같은 오류가 발생했다.
You are running `create-react-app` 4.0.3, which is behind the latest release (5.0.1).
We no longer support global installation of Create React App.
Please remove any global installs with one of the following commands:
- npm uninstall -g create-react-app
- yarn global remove create-react-app
The latest instructions for creating a new app can be found here:
https://create-react-app.dev/docs/getting-started/
커맨드에 나와있는 메시지를 따라서 삭제 후 다시 설치를 해 보았다.
npm uninstall -g create-react-app
npm 명령어로 실행했을 때는 제대로 실행이 안 되었는데
yarn global remove create-react-app
yarn 명령어로 실행하니까 제대로 삭제가 되었다.
yarn을 이용해서 글로벌로 설치했던 적이 있었는데 npm과 번갈아가며 사용해서.. 이걸로 시간이 조금 걸렸다..💩
만약 위 두 가지 방법으로도 해결이 안 된다면
@latest
를 붙여서 실행하는 방법도 있다.
npx create-react-app@latest project-name --template typescript