.d.ts is not generated in a multi-module NPM package setup.
Let's say I have two modules, Module A and Module B, such that B depends on A.
When I build the project, the build folder of both Module A and B contains respective .d.ts files.
However, when I use dev.petuska.npm.publish to publish from Module B, the final NPM package only contains the .d.ts file for Module B, not A.
Any idea how can I access .d.ts file of module A in my npm package ?