IT와 일상다반사

타입 스크립트 시작하기.. 본문

타입스크립트

타입 스크립트 시작하기..

Ch-Phillip 2021. 1. 29. 17:07
반응형

1. 우선 해당 프로젝트를 생성할 폴더를 만든다.

 

   mkdir ts-practice

2. 폴더를 생성후 vscode 에서 해당 폴더를 연다.

3. 그 후 프로젝트 파일 생성

    yarn init -y  

4. tsconfig.json 파일 생성

   yarn run tsc --init

5. 필수 설치

   npm i ts-node typescript

 

6. 실행 하기 

   yarn run tsc

 

 

*react typescript 

npx create-react-app my-app --template typescript

준비 끝

 

 

반응형
Comments