[ Typescript ] - 환경 설정

최문길·2023년 12월 18일
0

Typescript

목록 보기
1/23

Typescript를 시작하게 되었는데, typescript로 두근두근 하고 싶다면 환경설정 부터 시작해보자

1. Node.js 최신버전, Vscode 설치

2. Vscode 에서 terminal에서

  • 타입스크립트를 전역으로 설치해주자
    • 글로벌 설치
$ npm i typescript -g

# or, using Yarn:

$ yarn global add typescript
  • 아니면
    • local 설치
$ npm i typescript --save-dev

# or, using Yarn:
$ yarn add typescript --dev


React 프로젝트에서 Typescript 사용할 경우

  1. 이미 있는 React 프로젝트에서 설치
npm install --save typescript @types/node @types/react @types/react-dom @types/jest

# or

yarn add typescript @types/node @types/react @types/react-dom @types/jest
  1. 처음 부터
# npx <CRA> <프로젝트명> --template typescript
npx create-react-app my-app --template typescript

# or
yarn create react-app my-app --template typescript

0개의 댓글