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 fefab38 commit 7ac55a5Copy full SHA for 7ac55a5
package.json
@@ -56,6 +56,6 @@
56
"readme:toc": "doctoc ./README.md",
57
"postinstall": "husky install",
58
"website": "yarn --cwd website/ run start",
59
- "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"
60
}
61
packages/mongodb-memory-server-core/typedoc.json
@@ -0,0 +1,13 @@
1
+{
2
+ "entryPoints": [
3
+ "src/",
4
+ ],
5
+ "exclude": [
6
+ "**/__tests__/**"
7
8
+ "excludeInternal": true,
9
+ "excludePrivate": true,
10
+ "tsconfig": "tsconfig.build.json",
11
+ "entryPointStrategy": "expand",
12
+ "out": "../../typedoc_out"
13
+}
0 commit comments