-
Notifications
You must be signed in to change notification settings - Fork 49
/
tsconfig.docs.json
53 lines (53 loc) · 1.3 KB
/
tsconfig.docs.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
{
"extends": "./tsconfig.json",
"compilerOptions": {
"lib": [
"DOM"
]
},
"include": [
"packages/**/*",
"jest-setup/*"
],
"typedocOptions": {
"entryPointStrategy": "resolve",
"entryPoints": [
"packages/types/src/index.ts",
"packages/utils/src/index.ts",
"packages/config/src/index.ts",
"packages/network/src/index.ts",
"packages/did/src/index.ts",
"packages/statement/src/index.ts",
"packages/identifier/src/index.ts",
"packages/chain-space/src/index.ts",
"packages/schema/src/index.ts",
"packages/network-score/src/index.ts",
"packages/asset/src/index.ts",
"packages/sdk/src/index.ts",
"packages/registries/src/index.ts",
],
"out": "docs",
"theme": "default",
"exclude": [
"**/*spec.ts",
"**/__mocks__/**",
"**/testingTools/**",
"**/*.js",
"**/node_modules/**",
"**/__integrationtests__/**"
],
"excludeExternals": true,
"excludePrivate": true,
"hideGenerator": true,
"excludeInternal": true,
"categorizeByGroup": true,
"excludeNotDocumented": true,
"includeVersion": true,
"name": "SDK Documentation",
"readme": "README.md",
"navigation": {
"includeCategories": true,
"includeGroups": true,
},
}
}