You can always do this after the fact with command line calls. In Visual Studio, use the following post-build event command line call:
del $(OutDir)combined.d.ts
type $(OutDir)*.d.ts > $(OutDir)combined.d.ts
Perhaps it will be $(ProjectDir)Some\Other\Path\*.d.ts, etc. See here for more
source
share