# typedoc-plugin-missing-exports

> Include non-exported types in TypeDoc documentation

Latest version **4.1.4** (published 2026-07-07) · MIT license · 0 weekly downloads

## Install

```sh
npm install typedoc-plugin-missing-exports
pnpm add typedoc-plugin-missing-exports
yarn add typedoc-plugin-missing-exports
bun add typedoc-plugin-missing-exports
```

## Health

**Score 65/100 (B)** — status: active.

Positive: esm support; no vulnerabilities; has provenance; recently updated; high maintenance score.

Warnings: low downloads; no types.

## Facts

| | |
|---|---|
| Version | 4.1.4 |
| Published | 2026-07-07 |
| First published | 2021-09-04 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | ESM |
| Dependencies | 0 |
| Unpacked size | 17.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Provenance | attested (GitHub Actions) |
| GitHub stars | 51 |
| Author | Gerrit Birkeland |
| Maintainers | gerrit0 |
| Keywords | typedoc-plugin |

## Links

- npm: https://www.npmjs.com/package/typedoc-plugin-missing-exports
- Repository: https://github.com/Gerrit0/typedoc-plugin-missing-exports
- Homepage: https://github.com/Gerrit0/typedoc-plugin-missing-exports#readme
- Issues: https://github.com/Gerrit0/typedoc-plugin-missing-exports/issues
- npm.io page: https://npm.io/package/typedoc-plugin-missing-exports

## Recent versions

- 4.1.4 (latest) — 2026-07-07
- 4.1.3 — 2026-04-03
- 4.1.2 — 2025-10-11
- 4.1.1 — 2025-10-11
- 4.1.0 — 2025-08-11
- 4.0.0 — 2025-03-21
- 3.1.0 — 2024-11-25
- 3.0.2 — 2024-11-15
- 3.0.1 — 2024-11-15
- 3.0.0 — 2024-06-22
- 2.3.0 — 2024-06-13
- 2.2.0 — 2024-01-14
- 2.1.0 — 2023-08-25
- 2.0.1 — 2023-07-29
- 2.0.0 — 2023-04-16
- … 9 more at https://npm.io/package/typedoc-plugin-missing-exports/versions

## README

# typedoc-plugin-missing-exports

Automatically document symbols which aren't exported but are referenced.

> Supports TypeDoc ^0.28.1

TypeDoc looks at each entry point provided and documents all exports from that entry point.

For libraries which export their full exposed API, this works well, but some packages are extremely resistant to
exporting everything. This plugin is for them. After TypeDoc has finished converting packages, it will look for types
which are referenced, but not exported, and place them into an internal module for that entry point (called `<internal>`
by default).

If your project references classes which are built into the language (e.g. `HTMLElement`), this package _will_ result in
those types being documented too. If you want to prevent this, set TypeDoc's `excludeExternals` option to `true`. The
default pattern for determining if a symbol is external will exclude everything within `node_modules`.

### Usage

```bash
npm install typedoc-plugin-missing-exports --save-dev
npx typedoc --plugin typedoc-plugin-missing-exports
```

Alternatively, configure via an options file:

```json
// typedoc.json
{
	"plugin": ["typedoc-plugin-missing-exports"]
}
```

### Options

- `internalModule` - Define the name of the module that internal symbols which are not exported should be placed into,
  defaults to `<internal>`.
- `collapseInternalModule` - Include JS in the page to collapse all `<internal>` entries in the navigation on page load.
- `placeInternalsInOwningModule` - Disable creating a module for internal symbols, and instead place them into the
  referencing module.
- `includeDocCommentReferences` - Also automatically add values linked within doc comments to the documentation. This
  option requires that TypeDoc's
  [`useTsLinkResolution`](https://typedoc.org/documents/Options.Comments.html#usetslinkresolution) option is enabled and
  that JSDoc style comments are used. Link tags within TypeDoc's
  [`excludeTags`](https://typedoc.org/documents/Options.Comments.html#excludetags) option will not be documented as they
  will be removed from the documentation before rendering.

### Additional Reading

- https://github.com/TypeStrong/typedoc/issues/1657

---
_Source: https://npm.io/package/typedoc-plugin-missing-exports · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
