Skip to content

Commit 4307dfd

Browse files
committed
Clarify that entry points are globs, #2825
1 parent 0c07fd7 commit 4307dfd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

site/options/input.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ typedoc --entryPoints src/index.ts --entryPoints src/alt.ts
1616
```jsonc
1717
// typedoc.json
1818
{
19-
"entryPoints": ["src/index.ts", "src/alt.ts"],
19+
"entryPoints": ["src/index.ts", "src/alt.ts", "src/multiple/*.ts"],
2020
}
2121
```
2222

23-
Specifies the entry points to be documented by TypeDoc. TypeDoc will examine
23+
Specifies the entry points globs to be documented by TypeDoc. TypeDoc will examine
2424
the exports of these files and create documentation according to the exports.
2525
Entry points can be handled in one of four ways, see [--entryPointStrategy](#entrypointstrategy)
2626
for details.

0 commit comments

Comments
 (0)