본문 바로가기
개발 공부/typescript

typescript 파일 실행시키기.

by 억만장작 2021. 9. 12.

적당히 typescript 파일을 하나 만들자.

// study.ts
const arrow2 = (a: number, b: number) => {
    console.log(a);
    console.log(b);
};

arrow2(1, 2);
npm install -g @types/node typescript ts-node

를 통해 node와 typescript, ts-node를 받는다.

ts-node study.ts로 실행시킨다.

tsc study.ts를 통해 js로 컴파일한 후
node study.js로 실행 시키는 방법도 있다.

'개발 공부 > typescript' 카테고리의 다른 글

람다 라이브러리에 대해 알아보자.  (0) 2021.09.28

댓글