We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f54ef35 commit 04da924Copy full SHA for 04da924
CHANGELOG.md
@@ -1,5 +1,9 @@
1
# Unreleased
2
3
+### Bug Fixes
4
+
5
+- TypeDoc no longer ignores project references if `--entryPointStrategy Packages` is set, #1976.
6
7
## v0.23.3 (2022-07-01)
8
9
### Bug Fixes
src/lib/utils/entry-point.ts
@@ -367,6 +367,7 @@ function getEntryPointsForPackages(
367
const program = ts.createProgram({
368
rootNames: parsedCommandLine.fileNames,
369
options: options.fixCompilerOptions(parsedCommandLine.options),
370
+ projectReferences: parsedCommandLine.projectReferences,
371
});
372
const sourceFile = program.getSourceFile(packageEntryPoint);
373
if (sourceFile === undefined) {
0 commit comments