tsc —-init
tsc index.ts
tsc src/*.ts
tsc index.js --declaration --emitDeclarationOnly
es5
로 설정하면 CommonJS 버전으로 컴파일되구요!es2016(=es7)
로 설정하면 ES2016 버전으로 컴파일이 됩니다!"outDir": "dist"
로 설정하면 컴파일된 파일들이 dist
폴더에 저장되죠!compilerOptions - strict
옵션strictNullChecks
strictFunctionTypes
strictBindCallApply
strictPropertyInitialization
noImplicitAny
any
타입을 부여하지 않도록 해요.noImplicitThis
alwaysStrict
타입스크립트는 @types 라이브러리를 통해 외부라이브러리에 대한 타입정보를 제공한다
즉 javascript 라이브러리를 타입스크립트에서 쓰려면 해당 라이브러리에 대한 .d.ts 파일만 제공하면 된다.
enum UserRole { ADMIN = "ADMIN", EDITOR = "EDITOR", USER = "USER"}
const obj = { a: [1,2,3], b: 'b', c: 4 }