포포 일상 블로그

TypeScript 설치 및 설정. 본문

dev/JS

TypeScript 설치 및 설정.

dev포포 2021. 1. 7. 02:43

www.typescriptlang.org/

 

Typed JavaScript at Any Scale.

TypeScript extends JavaScript by adding types to the language. TypeScript speeds up your development experience by catching errors and providing fixes before you even run your code.

www.typescriptlang.org

 

npm install -g typescript

 

tsconfig.json 파일을 생성해줍니다.

필요에 따라 각 옵션들을 바꿔주면 됩니다.

tsc init -y

 

 

tsc /파일이름

실행 시 js 파일로 변환됨을 확인할 수 있습니다.