본문 바로가기

JavaScript

[TypeScript] TypeScript VScode Plugin

* NodeJs Download url
https://nodejs.org/en/download

* VSCode PlugIn List
색 테마 : Night Owl
파일 아이콘 테마 : Meterial Icon Theme
문법검사 : ESLint 
실습 환경 보조 : Live Server
기타 
Prettier, Project Manager , Auto Close Tag, GitLens, Atom Keymap , Jetbrains IDE Keymap 
-----------------------------------------------------------------------------------------
Type Script 문법

 

변수 : 타입;

interface 객체명() : 리턴값 {
   변수 : 타입;
}


| : 유니온으로 A | B 인터페이스의 두 객체(A.B )에 해당하는 공통 변수에 대해서만 가능
& : 인터페이스의 A 또는 B 에 있는 변수에 대해서 가능


* type guard
function is해당타입(target: 인자) : target is 리턴인자 {

}

ex) function isDeveloper(target : Developer | Person) : target is Developer {
    return (target as Developer).skill !== undefined;
}


* typescript 사이트 
https://www.typescriptlang.org/

- playground 

* typescript 핸드북 참고 블로그
https://joshua1988.github.io/ts/guide/generics.html