-
Notifications
You must be signed in to change notification settings - Fork 1
/
typedoc.json
90 lines (90 loc) · 1.71 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "Doubter",
"includeVersion": true,
"excludePrivate": true,
"excludeExternals": true,
"excludeInternal": true,
"disableSources": true,
"hideGenerator": true,
"readme": "none",
"tsconfig": "./tsconfig.json",
"customCss": "./node_modules/typedoc-custom-css/custom.css",
"navigation": {
"includeFolders": false
},
"entryPoints": [
"./src/main/index.ts",
"./src/main/utils.ts",
"./src/main/plugin/*.ts"
],
"compilerOptions": {
"skipLibCheck": true
},
"groupOrder": [
"DSL",
"Shapes",
"Type Inference",
"Issues",
"Operations",
"Other",
"Errors",
"Functions",
"References",
"Constructors",
"Properties",
"Methods",
"Plugin Properties",
"Plugin Methods"
],
"kindSortOrder": [
"Function",
"Reference",
"Project",
"Module",
"Namespace",
"Enum",
"EnumMember",
"Class",
"Interface",
"TypeAlias",
"Constructor",
"Property",
"Variable",
"Accessor",
"Method",
"Parameter",
"TypeParameter",
"TypeLiteral",
"CallSignature",
"ConstructorSignature",
"IndexSignature",
"GetSignature",
"SetSignature"
],
"intentionallyNotExported": [
"Awaitable",
"DeepPartialArrayShape",
"DeepPartialIntersectionShape",
"DeepPartialObjectShape",
"DeepPartialPromiseShape",
"DeepPartialUnionShape",
"Dict",
"ExcludeLiteral",
"InferPromise",
"Intersect",
"OptionalDeepPartialShape",
"OptionalKeys",
"OptionalPropShapes",
"Promisify",
"ReadonlyDict",
"RequiredPropShapes",
"InferOrDefault",
"ThisType",
"ToReadonly",
"INPUT",
"OUTPUT"
],
"plugin": [
"typedoc-plugin-mdn-links"
]
}