-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypedoc.json
46 lines (46 loc) · 1.17 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
{
"entryPoints": [
"./src/index.ts"
],
"out": "docs",
"includes": "./src",
"exclude": [
"**/node_modules/**",
"**/*.test.ts",
"**/**/index.ts"
],
"externalPattern": "**/node_modules/**",
"theme": "./node_modules/typedoc-neo-theme/bin/default",
"includeVersion": true,
"categorizeByGroup": true,
"excludeExternals": true,
"excludePrivate": false,
"hideGenerator": true,
"disableSources": true,
"links": [
{
"label": "Repository",
"url": "https://github.com/gobstones/gobstones-gbb-parser"
},
{
"label": "Gobstones Docs",
"url": "https://dev.gobstones.org"
},
{
"label": "Contribution Guidelines",
"url": "https://dev.gobstones.org/contribution-guidelines"
}
],
"outline": [
{
"Public Modules": {
"GBB": "index"
},
"Internal Modules": {
"Tokenizer": "grammar_index.",
"Parser": "parser_parser",
"Stringifier": "stringifier_stringifier"
}
}
]
}