We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac9c5c6 commit 5047122Copy full SHA for 5047122
1 file changed
typedoc.json
@@ -1,20 +1,28 @@
1
{
2
"$schema": "https://typedoc.org/schema.json",
3
- "entryPoints": ["./src/index.ts"],
+ "entryPoints": ["./src"],
4
+ "entryPointStrategy": "expand",
5
"out": "./docs",
6
"name": "topstepx-api",
7
"readme": "./README.md",
8
"includeVersion": true,
9
"excludePrivate": true,
10
"excludeProtected": true,
11
"excludeInternal": true,
12
+ "excludeNotDocumented": false,
13
"githubPages": true,
14
"navigation": {
15
"includeCategories": true,
16
"includeGroups": true
17
},
18
"categorizeByGroup": true,
19
"searchInComments": true,
- "plugin": [],
- "hideGenerator": true
20
+ "hideGenerator": true,
21
+ "sort": ["source-order"],
22
+ "visibilityFilters": {
23
+ "protected": false,
24
+ "private": false,
25
+ "inherited": true,
26
+ "external": false
27
+ }
28
}
0 commit comments