-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypedoc.json
57 lines (57 loc) · 1.33 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"$schema": "https://typedoc.org/schema.json",
"entryPoints": [
"src/shared/types",
"src/frontend",
"src/backend",
"src/shared"
],
"entryPointStrategy": "expand",
"out": "docs/api",
"name": "FARM Stack API Documentation",
"includeVersion": true,
"excludePrivate": true,
"excludeProtected": true,
"excludeExternals": true,
"excludeInternal": true,
"exclude": [
"**/*.test.ts",
"**/*.spec.ts",
"**/*.stories.ts",
"**/__tests__/**",
"**/test/**",
"**/tests/**",
"**/*.test.tsx",
"**/*.spec.tsx",
"**/*.stories.tsx"
],
"plugin": [],
"theme": "default",
"readme": "README.md",
"tsconfig": "tsconfig.json",
"sort": [
"source-order"
],
"categorizeByGroup": true,
"searchInComments": true,
"validation": {
"invalidLink": true,
"notExported": true
},
"navigationLinks": {
"Project Documentation": "https://falkicon.github.io/farm",
"GitHub": "https://github.com/Falkicon/farm"
},
"visibilityFilters": {
"protected": false,
"private": false,
"inherited": true,
"external": false
},
"cleanOutputDir": true,
"preserveWatchOutput": true,
"pretty": true,
"titleLink": "https://falkicon.github.io/farm",
"sourceLinkTemplate": "https://github.com/Falkicon/farm/blob/{gitRevision}/{path}#L{line}",
"gitRevision": "main"
}