-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtypedoc.json
More file actions
33 lines (33 loc) · 906 Bytes
/
Copy pathtypedoc.json
File metadata and controls
33 lines (33 loc) · 906 Bytes
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
{
"entryPoints": ["src/index.ts"],
"out": "docs/api",
"name": "h2m-parser",
"readme": "./README.md",
"plugin": ["typedoc-plugin-markdown"],
"excludePrivate": true,
"excludeInternal": true,
"excludeExternals": true,
"excludeNotDocumented": false,
"includeVersion": true,
"categorizeByGroup": true,
"categoryOrder": ["Main", "Options", "Types", "*"],
"navigation": {
"includeCategories": true,
"includeGroups": true
},
"sidebarLinks": {
"GitHub": "https://github.com/gustavovalverde/h2m-parser",
"npm": "https://www.npmjs.com/package/h2m-parser"
},
"gitRevision": "main",
"theme": "default",
"treatWarningsAsErrors": false,
"validation": {
"notExported": false,
"invalidLink": true
},
"hideGenerator": false,
"searchInComments": true,
"cleanOutputDir": true,
"exclude": ["**/fixtures/**", "**/tests/**", "**/bench/**", "**/*.html"]
}