I have a TypeScript typings project containing several *.d.ts files. This is a set of 'global' declarations (i.e. named modules). I use typings to pull the declaration files from that typings project into a TypeScript project.
typings install github:phreed/typed-npm-webgme -SG
The resulting typings/globals/index.d.ts only contains the file identified as the "main" in typings.json. I expect it to include (concatenate) all of content of the "files" appearing in the tsconfig.json.
How do I cause typings/globals/index.d.ts to contain the concatenation of the *.d.ts files?