• Jobs
  • About Us
  • professionals
    • Home
    • Jobs
    • Courses and challenges
    • Questions
    • Teachers
  • business
    • Home
    • Post vacancy
    • Our process
    • Pricing
    • Assessments
    • Payroll
    • Blog
    • Sales
    • Salary Calculator

0

205
Views
How do I build an "index" of my TypeScript API without it showing up on IntelliSense all the time?

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?

almost 3 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Our process Sales
Legal
Terms and conditions Privacy policy
© 2025 PeakU Inc. All Rights Reserved.

Andres GPT

Recommend me some offers
I have an error