-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathtypedoc.json
More file actions
64 lines (64 loc) · 1.9 KB
/
typedoc.json
File metadata and controls
64 lines (64 loc) · 1.9 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
{
"$schema": "https://typedoc.org/schema.json",
"entryPointStrategy": "packages",
"entryPoints": ["packages/*"],
"exclude": ["packages/api"],
"favicon": "assets/favicon.svg",
"headings": {
"readme": false
},
"hostedBaseUrl": "https://cerbos.github.io/cerbos-sdk-javascript/",
"locales": {
"en": {
"kind_enum_member": "Enumeration member",
"kind_call_signature": "Call signature",
"kind_index_signature": "Index signature",
"kind_constructor_signature": "Constructor signature",
"kind_type_literal": "Type literal",
"kind_type_parameter": "Type parameter",
"kind_get_signature": "Get signature",
"kind_set_signature": "Set signature",
"kind_type_alias": "Type alias",
"kind_plural_enum_member": "Enumeration members",
"kind_plural_call_signature": "Call signatures",
"kind_plural_index_signature": "Index signatures",
"kind_plural_constructor_signature": "Constructor signatures",
"kind_plural_type_literal": "Type literals",
"kind_plural_type_parameter": "Type parameters",
"kind_plural_get_signature": "Get signatures",
"kind_plural_set_signature": "Set signatures",
"kind_plural_type_alias": "Type aliases"
}
},
"name": "Cerbos JavaScript SDK",
"navigationLinks": {
"Cerbos": "https://www.cerbos.dev",
"GitHub": "https://github.com/cerbos/cerbos-sdk-javascript"
},
"packageOptions": {
"excludeInternal": true,
"includeVersion": true,
"requiredToBeDocumented": [
"Enum",
"EnumMember",
"Variable",
"Function",
"Class",
"Interface",
"Constructor",
"Property",
"Method",
"Accessor",
"TypeAlias",
"TypeParameter"
],
"validation": {
"notDocumented": true
}
},
"plugin": [
"typedoc-plugin-mdn-links",
"./private/scripts/lib/typedoc-plugin.js"
],
"treatWarningsAsErrors": true
}