In Typescript project I need to import some old js files that do module.exports inside of themselves.
As i import:
import * as httpConnection from \'...p
You could create a file named: global.d.ts in the root of your project and add this:
global.d.ts
declare module '*';