My organization is currently considering using TypeScript for a new project we are working on. This project is quite complex, and I'm trying to figure out how to compile it if we decide to use internal modules.
From what I understand, if we have an internal module with its implementation spread across multiple files, all those files need to be compiled and then combined into one bundle in order for the project to function properly.
How do we handle a project that contains multiple internal modules like this? Does anyone have any experience implementing a similar approach?