-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtypedoc.json
More file actions
48 lines (48 loc) · 1.2 KB
/
typedoc.json
File metadata and controls
48 lines (48 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"$schema": "https://typedoc.org/schema.json",
"entryPoints": ["packages/*", "packages/sdk-effects/*"],
"entryPointStrategy": "packages",
"out": "docs",
"readme": "none",
"excludePrivate": true,
"excludeProtected": true,
"excludeExternals": true,
"hideGenerator": true,
"searchInComments": true,
"navigationLinks": {
"GitHub": "https://github.com/ForgeRock/ping-javascript-sdk"
},
"packageOptions": {
"tsconfig": "tsconfig.lib.json",
"entryPoints": ["./src/index.ts", "./src/types.ts"]
},
"exclude": [
"**/dist",
"node_modules",
"**/coverage",
"**/*.(spec|test|e2e).ts",
"**/*.mock.*",
"**/*.data.*",
"**/docs/**",
"**/tests/**",
"**/specs/**",
"**/spec/**",
"**/test/**"
],
"externalPattern": ["**/node_modules/**"],
"emit": "docs",
"theme": "typedoc-github-theme",
"gitRevision": "main",
"gitRemote": "origin",
"lang": "en",
"githubPages": true,
"sort": ["visibility", "required-first", "source-order"],
"visibilityFilters": {
"protected": true,
"private": true,
"inherited": true,
"external": true
},
"logLevel": "Verbose",
"plugin": ["typedoc-plugin-rename-defaults", "typedoc-github-theme"]
}