Skip to content

Commit 3c7bc0c

Browse files
committed
docs: correct directory and set entryPointStrategy
The directory where to generate the docs from was wrong, I'm not sure when this changed but probably during the move from release-0.x to release-1.x. Also the `entryPointStrategy` needed to be set so that we are able to include these files to generate the docs even if our ts-config doesn't include them. This was the default behavior a couple of releases of typedoc ago but was changed.
1 parent 95b099e commit 3c7bc0c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"test-transpiled": "mocha --no-config dist",
3131
"prepare": "npm run build && husky",
3232
"prepack": "npm run build",
33-
"docs": "typedoc src/gen/api"
33+
"docs": "typedoc src/gen/apis"
3434
},
3535
"c8": {
3636
"include": [

typedoc.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
{
2-
"out": "docs"
2+
"out": "docs",
3+
"entryPointStrategy": "expand"
34
}

0 commit comments

Comments
 (0)