Having a multi file typescript project, using external modules.
If I compile with
tsc -d init.ts -m "commonjs"
Then all the files of the project get their own .d.ts file. But I would like to generate one single .d.ts file for the whole project. What's the best way to go about this?