I have a bunch of autogenerated modules that i need to reference from my typescript files.
Eg
import test = require('../templates/test')
I am generating CommonJS modules with ES5 output.
So I cant use amd-dependency
(since that works for amd modules only).
And I also cannot manually declare the module since 1. it is autogenerated and 2. it has a relative path.
Typescript 1.6 currently shows an error saying it 'Cannot find module'. How do i make it suppress this error and import?