express를 import하면 아래와 같이 import 했을 겁니다.
import * as Express from 'express';
하지만 tsconfig.json 파일에 아래 내용을 추가 하면..
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
}
}
이렇게 import가 가능해 집니다.
import Express from 'express'