-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathtypedoc.json
More file actions
42 lines (42 loc) · 940 Bytes
/
typedoc.json
File metadata and controls
42 lines (42 loc) · 940 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
{
"$schema": "https://typedoc.org/schema.json",
"entryPoints": ["packages/*"],
"entryPointStrategy": "packages",
"out": "docs/build/api",
"name": "n8n-as-code API Reference",
"includeVersion": true,
"categorizeByGroup": true,
"searchCategoryBoosts": {
"Core": 2.0,
"CLI": 1.5,
"Agent Tools": 1.5,
"VS Code": 1.5
},
"navigation": {
"includeCategories": true,
"includeGroups": true
},
"theme": "default",
"exclude": [
"**/node_modules/**",
"**/*.test.ts",
"**/*.spec.ts",
"**/tests/**",
"**/dist/**",
"**/out/**"
],
"excludePrivate": true,
"excludeProtected": false,
"excludeExternals": true,
"readme": "none",
"disableSources": false,
"cleanOutputDir": true,
"favicon": "docs/static/img/favicon.ico",
"githubPages": false,
"hideGenerator": false,
"validation": {
"notExported": true,
"invalidLink": true,
"notDocumented": false
}
}