[typescript] Command - tsc

tsc

  • tsc ts파일명
  • ts -> js 컴파일
tsc app01.ts

function hello(name: string) {
    console.log(`hello ${name}!`);
}
hello('woogie');

 컴파일

function hello(name) {
    console.log("hello " + name + "!");
}
hello('woogie');

tsc --init

  • tsconfig.json 파일 생성
  • 설정파일

tsc -w

  • tsc -w ts파일명
  • 자동 컴파일
tsc -w app01.ts

links

social