본문 바로가기
Programming/Node.js

Typescript에서 default import 개선..

by 신규하 2019. 8. 12.

express를 import하면 아래와 같이 import 했을 겁니다.

import * as Express from 'express';

하지만 tsconfig.json 파일에 아래 내용을 추가 하면..

{
   "compilerOptions": {
    "allowSyntheticDefaultImports": true,
    "esModuleInterop": true,
   }
}

이렇게 import가 가능해 집니다.

import Express from 'express'

댓글