I have a bunch of auto-generated modules that I need to reference from my typescript files.
For instance,
import test = require ('../ templates / test')
I am generating CommonJS modules with ES5 output. Therefore, I can not use amd-dependency (since this only works for amd-modules). And I also cannot manually declare a module with 1. it is auto-generated and 2. has a relative path.
Typescript 1.6 is currently displaying a "Cannot find module" error message. How to make it suppress this error and import?
pdeva source share