-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtypedoc.json
More file actions
46 lines (46 loc) · 1.19 KB
/
typedoc.json
File metadata and controls
46 lines (46 loc) · 1.19 KB
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/ontology/index.ts",
"src/ontology/types.ts",
"src/ontology/OntologyManager.ts",
"src/ontology/OntologyValidator.ts",
"src/ontology/OntologyClassifier.ts",
"src/ontology/OntologyQueryEngine.ts",
"src/ontology/heuristics/index.ts"
],
"out": "docs/api",
"excludePrivate": true,
"excludeProtected": false,
"excludeInternal": true,
"readme": "docs/ontology-api-overview.md",
"name": "Ontology Integration System API",
"includeVersion": true,
"sort": ["source-order"],
"kindSortOrder": [
"Function",
"Class",
"Interface",
"TypeAlias",
"Enum",
"Variable"
],
"categorizeByGroup": true,
"defaultCategory": "Core",
"categoryOrder": [
"Core",
"Configuration",
"Validation",
"Classification",
"Querying",
"Heuristics",
"Types",
"*"
],
"plugin": [],
"navigationLinks": {
"User Guide": "https://github.com/agent-agnostic-coding-tools/docs/ontology-integration-guide.md",
"Requirements": "../../.spec-workflow/specs/ontology-integration/requirements.md",
"Design": "../../.spec-workflow/specs/ontology-integration/design.md"
}
}