이전 포스팅인 "vscode에서 typescript 프로젝트 생성"에서 생성한 프로젝트에서 시작 [typescript] vscode에서 typescript 프로젝트 생성 프로젝트를 만들 디렉터리를 생성한 후 $ yarn init 명령어로 package.json파일을 생성한다 $ yarn add --dev typescript tsc @types/node typescript를 위한 모듈을 추가한다 테스트용 임시 코드를 작성 한다.. choiyb2.tistory.com class Car { private name: string; constructor(name: string) { this.name = name; } toString(): string { return `name : ${this.name}`; } }..