-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathtypedoc.json
More file actions
46 lines (46 loc) · 935 Bytes
/
typedoc.json
File metadata and controls
46 lines (46 loc) · 935 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
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"$schema": "https://typedoc.org/schema.json",
"entryPoints": ["./src/index.ts"],
"out": "./interactive-tests/docs",
"plugin": [],
"name": "xslt-processor",
"readme": "./README.md",
"includeVersion": true,
"excludePrivate": true,
"excludeProtected": false,
"excludeInternal": true,
"skipErrorChecking": true,
"exclude": [
"**/node_modules/**",
"**/tests/**",
"**/*.test.ts",
"**/*.test.tsx",
"**/src/xpath/lib/**"
],
"tsconfig": "./tsconfig.json",
"gitRevision": "main",
"categorizeByGroup": true,
"categoryOrder": [
"Main",
"DOM",
"XPath",
"XSLT",
"Streaming",
"Packages",
"*"
],
"navigation": {
"includeCategories": true,
"includeGroups": true,
"includeFolders": true
},
"sort": ["source-order", "alphabetical"],
"kindSortOrder": [
"Function",
"Class",
"Interface",
"TypeAlias",
"Variable",
"Enum"
]
}