-
-
Notifications
You must be signed in to change notification settings - Fork 316
/
typedoc.json
55 lines (55 loc) · 1.86 KB
/
typedoc.json
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
49
50
51
52
53
54
55
{
"$schema": "https://typedoc.org/schema.json",
"disableSources": true,
"hideBreadcrumbs": true,
"entryPoints": [
"src/types.d.ts",
"src/jwt/decrypt.ts",
"src/jwt/encrypt.ts",
"src/jwt/produce.ts",
"src/jwt/sign.ts",
"src/jwt/unsecured.ts",
"src/jwt/verify.ts",
"src/jwe/compact/encrypt.ts",
"src/jwe/compact/decrypt.ts",
"src/jwe/flattened/encrypt.ts",
"src/jwe/flattened/decrypt.ts",
"src/jwe/general/encrypt.ts",
"src/jwe/general/decrypt.ts",
"src/jws/compact/sign.ts",
"src/jws/compact/verify.ts",
"src/jws/flattened/sign.ts",
"src/jws/flattened/verify.ts",
"src/jws/general/sign.ts",
"src/jws/general/verify.ts",
"src/jwk/embedded.ts",
"src/jwk/thumbprint.ts",
"src/jwks/local.ts",
"src/jwks/remote.ts",
"src/util/base64url.ts",
"src/util/decode_jwt.ts",
"src/util/decode_protected_header.ts",
"src/util/errors.ts",
"src/key/export.ts",
"src/key/generate_key_pair.ts",
"src/key/generate_secret.ts",
"src/key/import.ts"
],
"excludeExternals": true,
"excludePrivate": true,
"excludeProtected": true,
"gitRevision": "main",
"hideGenerator": true,
"out": "docs",
"plugin": ["typedoc-plugin-markdown", "typedoc-plugin-mdn-links"],
"readme": "none",
"tsconfig": "./tsconfig/browser.json",
"sort": ["kind", "static-first", "required-first", "alphabetical"],
"githubPages": false,
"parametersFormat": "table",
"textContentMappings": {
"title.memberPage": "{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).",
"title.indexPage": "{projectName} API Reference"
},
"hidePageHeader": true
}