I have this in my app with the @types/express
dependency installed
import express = require('express');
It is pointing to the express
and saying this is an unexpected identifier
when I run my server. I believe this is correct TS syntax and the regular JS way of const express = ..
has the same error.
Do I need regular express? or wouldn't I need the one I already installed, which should be for TS specifically?