
TypeScript란?

TypeScript 설치 및 사용방법

TypeScript(First Type Annotation) : 변수나 매개변수에 내가 원하는 타입을 지정해준다.

TypeScript(TypeScript vs JavaScript)

TypeScript(작성자와 사용자의 관점으로 코드 바라보기)

TypeScript(Structural Type System vs Nominal Type System)

TypeScript(Type Compatibility)

TypeScript(타입별칭-Type Alias)

TypeScript(Compilation Context)

TypeScript(tsconfig schema)

TypeScript(compileOptions) - typeRoots, types

TypeScript(compileOptions) - target, lib

TypeScript(compileOptions-3) - outDir, outFile, rootDir

TypeScript(compileOptions-4) - strict

What are Interfaces??

TypeScript(optional property)

TypeScript(function in interface)

TypeScript(class implements interface) - interface를 이용하여 class를 implements하는 방법

TypeScript(interface extends interface) - interface를 가져와서 추가적으로 추가할 interface만 추가하는 방법

TypeScript(function interface) - interface로 function를 표현하는 방법

TypeScript(Readonly interface Properties) - interfaced의 Properties에 Readonly이라는 키워드를 사용하는 방법

TypeScript(type alias vs interface)

TypeScript(What are Classes?) - Classe란?

TypeScript(constructor & initialize)