Gitsunmin

TIL

TIL
(=Today I Learned)

Import type only

Typescript에서 TS -> JS로 컴파일할 때, Type들은 모두 사용하지 않게 되는데, 부득이하게, export, import를 해서 사용하는 경우가 많습니다. 이러한 경우에 컴파일 후에는 사용되지 않는 값이라는 것을 명시하는 방법을 아래에 소개하였습니다.

// TS 3.8+ syntax
import type { A, B, C } from "./letters";
// TS 4.5+ syntax
import { type D, E } from "./moreLetters";
// TS 3.8+ syntax
export type { F, G } from "./letters";
// TS 4.5+ syntax
export { type H, I } from "./moreLetters";

4.5 버전 이상 부터는 import와 export를 모두 사용 가능합니다.

typescript playground에서 테스트 가능합니다.