-
Notifications
You must be signed in to change notification settings - Fork 1
/
typedoc.json
43 lines (43 loc) · 1.29 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
{
"$schema": "https://typedoc.org/schema.json",
"name": "Codemetrica",
// "projectDocuments": ["docs/*"],
"entryPoints": [
"./codemetrica/index.ts",
"./codemetrica/language/python/index.ts",
"./codemetrica/language/java/index.ts",
"./codemetrica/smell/index.ts",
],
// "entryPointStrategy": "expand",
"exclude": [
"**/node_modules/**",
"**/grammars-v4/**",
"**/tests/**",
"**/examples/**",
// "./*.ts",
"./*.json",
],
"out": "site/static/api/",
"customFooterHtml": "<p>© <strong>CodeMetrica</strong> 2024</p>",
"navigationLinks": {
"Docs": "/docs/",
"Example": "/docs/overview/examples/",
"GitHub": "https://github.com/sparklabOrg/codemetrica"
},
"sidebarLinks": {
"Back to docs": "/docs/",
},
"navigation": {
// "includeCategories": true,
// "includeGroups": true,
// "includeFolders": false
},
// "categorizeByGroup": false,
// "disableSources": true,
// "excludePrivate": true,
// "excludeProtected": true,
// "plugin": ["typedoc-plugin-rename-defaults"],
// "theme": "hierarchy",
// "excludeNotExported": false
"readme": "./site/typedoc.md",
}