-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtypedoc.json
More file actions
68 lines (68 loc) · 1.83 KB
/
Copy pathtypedoc.json
File metadata and controls
68 lines (68 loc) · 1.83 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"$schema": "https://typedoc-plugin-markdown.org/schema.json",
"logLevel": "Warn",
"treatWarningsAsErrors": true,
"disableSources": true,
"hideBreadcrumbs": true,
"visibilityFilters": {
"protected": false,
"private": false,
"inherited": true,
"external": false
},
"includeVersion": false,
"entryPoints": ["index.ts"],
"excludeExternals": true,
"excludePrivate": true,
"excludeProtected": true,
"intentionallyNotExported": ["CryptoKeyStructuralFallback"],
"gitRevision": "main",
"hideGenerator": true,
"out": "docs",
"plugin": ["typedoc-plugin-markdown", "typedoc-plugin-remark", "./docs-theme.ts"],
"readme": "none",
"sort": ["kind", "static-first", "required-first", "alphabetical"],
"groupOrder": [
"Core",
"KEM Algorithms",
"KDF Algorithms",
"AEAD Algorithms",
"Constructors",
"Methods",
"Properties"
],
"categoryOrder": ["Encryption Context", "Key Management", "Single-Shot APIs"],
"githubPages": false,
"parametersFormat": "table",
"indexFormat": "table",
"hidePageHeader": true,
"expandObjects": false,
"expandParameters": false,
"interfacePropertiesFormat": "list",
"tableColumnSettings": {
"hideDefaults": true,
"hideInherited": false,
"hideModifiers": false,
"hideOverrides": false,
"hideSources": false,
"hideValues": false,
"leftAlignHeaders": true
},
"theme": "my-markdown",
"remarkStringifyOptions": { "bullet": "-" },
"remarkPlugins": [
{
"applyTo": ["Class", "Interface"],
"plugins": [
["remark-insert-headings", { "text": "Contents" }],
["remark-toc", { "maxDepth": 3, "skip": "Extends|See|Example" }]
]
},
{
"applyTo": ["Class"],
"plugins": [
["remark-behead", { "between": ["Constructor", "Encryption Context"], "depth": -1 }]
]
}
]
}