TypeScript with Express: Type 'typeof import("express")' has no call signatures
Make sure you don't have "esModuleInterop": true
set in tsconfig.json. Disabling this setting resolved the issue for me.
Add @types/express
and then:
import * as express from "express";
...
const app = express();