-
-
Notifications
You must be signed in to change notification settings - Fork 362
Expand file tree
/
Copy pathtypedoc.json
More file actions
30 lines (30 loc) · 1.02 KB
/
typedoc.json
File metadata and controls
30 lines (30 loc) · 1.02 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
{
"$schema": "https://typedoc.org/schema.json",
"disableSources": true,
"hideBreadcrumbs": true,
"entryPoints": [
"src/types.d.ts",
"src/jwe/**/*.ts",
"src/jwk/*.ts",
"src/jwks/*.ts",
"src/jws/**/*.ts",
"src/jwt/*.ts",
"src/key/*.ts",
"src/util/*.ts",
],
"excludeExternals": true,
"excludePrivate": true,
"excludeProtected": true,
"gitRevision": "main",
"hideGenerator": true,
"out": "docs",
"plugin": ["typedoc-plugin-markdown", "typedoc-plugin-mdn-links"],
"readme": "none",
"sort": ["kind", "static-first", "required-first", "alphabetical"],
"githubPages": false,
"parametersFormat": "table",
"pageTitleTemplates": {
"member": "{keyword} {kind}: {name}\n\n## [💗 Help the project](https://github.com/sponsors/panva)\n\nSupport from the community to continue maintaining and improving this module is welcome. If you find the module useful, please consider supporting the project by [becoming a sponsor](https://github.com/sponsors/panva)."
},
"hidePageHeader": true
}