-
-
Notifications
You must be signed in to change notification settings - Fork 164
Expand file tree
/
Copy pathtypedoc.json
More file actions
24 lines (24 loc) · 632 Bytes
/
typedoc.json
File metadata and controls
24 lines (24 loc) · 632 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
{
"$schema": "https://typedoc.org/schema.json",
"entryPoints": ["tree-sitter.d.ts"],
"entryPointStrategy": "expand",
"tsconfig": "tsconfig.typedoc.json",
"out": "docs/api",
"readme": "README.md",
"cleanOutputDir": true,
"excludeReferences": true,
"excludePrivate": true,
"excludeInternal": true,
"includeVersion": true,
"searchInComments": true,
"navigationLinks": {
"GitHub": "https://github.com/tree-sitter/node-tree-sitter"
},
"visibilityFilters": {
"protected": false,
"private": false,
"inherited": true,
"external": false
},
"plugin": ["typedoc-plugin-rename-defaults"]
}