I wrote an index.ts file which exports * from 'oneOfManyApiFiles'
and also wraps all my API functions in a single object, so end-users can simply do
const api = (await require("myApi")).getApi()
api.callOneOfManyApiFunctions();
index.ts also enables TypeDoc to create a nice HTML page with information on all the exported types and functions.
The problem is that when I'm writing code (VS Code), IntelliSense always chooses to import symbols from index.ts (because it re-exports everything), rather than the actual file which originally exports the symbol. It seemed necessary for me to re-export everything to enable TypeDoc, but that also seems to be the root of my problems.
Is there a better way to go about organizing my project?