-
Notifications
You must be signed in to change notification settings - Fork 0
/
typedoc.json
51 lines (43 loc) · 1.14 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
{
"$schema": "https://typedoc.org/schema.json",
"compilerOptions": {
"skipLibCheck": true
},
"entryPoints": [
"./src/main/batpb-genart.ts"
],
"out": "./out/doc",
"customCss": "./typedoc/typedoc.css",
"plugin": [
"typedoc-plugin-coverage"
],
"includeVersion": true,
"json": "./out/doc/json",
"navigationLinks": {
"GitHub Pages": "https://brittni-and-the-polar-bear.github.io/genart/"
},
"sidebarLinks": {
},
"navigation": {
"includeCategories": true,
"includeGroups": true,
"includeFolders": true
},
"visibilityFilters": {
"private": true,
"protected": true,
"inherited": true,
"external": true,
"@alpha": true,
"@beta": true,
"@deprecated": true
},
"sort": ["kind", "visibility", "static-first", "alphabetical", "enum-value-ascending"],
"validation": {
"notExported": true,
"invalidLink": true,
"notDocumented": true
},
"treatWarningsAsErrors": false,
"customFooterHtml": "<br/>Copyright © 2023-2024 <a href=\"https://brittni-and-the-polar-bear.github.io/\" target=\"_blank\" rel=\"noopener noreferrer\">brittni and the polar bear LLC</a>."
}