dealing-with-react-native icon indicating copy to clipboard operation
dealing-with-react-native copied to clipboard

새 프로젝트 생성시 TypeScript 환경인 문제

Open velopert opened this issue 1 year ago • 0 comments

React Native 0.71 이상 버전부터 프로젝트를 만들 때 TypeScript 환경을 만들어집니다.

TypeScript는 12장부터 다루므로 그 전에 프로젝트를 만들땐

npx react-native init LearnReactNative --version 0.70

와 같이, --version 0.70 을 포함해야합니다.

그리고, 12장과 15장에서 새로운 TypeScript 환경 프로젝트를 생성할땐 --template react-native-template-typescript 를 생략해도 됩니다.

e.g.

npx react-native init ArticlesApp

velopert avatar Aug 15 '23 16:08 velopert