Skip to content

Commit 04da924

Browse files
committed
Fix project references in packages mode
Resolves #1976
1 parent f54ef35 commit 04da924

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Unreleased
22

3+
### Bug Fixes
4+
5+
- TypeDoc no longer ignores project references if `--entryPointStrategy Packages` is set, #1976.
6+
37
## v0.23.3 (2022-07-01)
48

59
### Bug Fixes

src/lib/utils/entry-point.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -367,6 +367,7 @@ function getEntryPointsForPackages(
367367
const program = ts.createProgram({
368368
rootNames: parsedCommandLine.fileNames,
369369
options: options.fixCompilerOptions(parsedCommandLine.options),
370+
projectReferences: parsedCommandLine.projectReferences,
370371
});
371372
const sourceFile = program.getSourceFile(packageEntryPoint);
372373
if (sourceFile === undefined) {

0 commit comments

Comments
 (0)