Skip to content

Commit

Permalink
chore(typedoc): include more source documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
hasezoey committed Oct 5, 2023
1 parent fefab38 commit 7ac55a5
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,6 @@
"readme:toc": "doctoc ./README.md",
"postinstall": "husky install",
"website": "yarn --cwd website/ run start",
"typedoc": "typedoc packages/mongodb-memory-server-core/src/index.ts --out typedoc_out --tsconfig packages/mongodb-memory-server-core/tsconfig.build.json"
"typedoc": "yarn --cwd packages/mongodb-memory-server-core/ typedoc"
}
}
13 changes: 13 additions & 0 deletions packages/mongodb-memory-server-core/typedoc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"entryPoints": [
"src/",
],
"exclude": [
"**/__tests__/**"
],
"excludeInternal": true,
"excludePrivate": true,
"tsconfig": "tsconfig.build.json",
"entryPointStrategy": "expand",
"out": "../../typedoc_out"
}

0 comments on commit 7ac55a5

Please sign in to comment.