forked from KILTprotocol/sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.docs.json
39 lines (39 loc) · 987 Bytes
/
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
{
"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/chain-helpers/src/index.ts",
"packages/did/src/index.ts",
"packages/core/src/index.ts",
"packages/messaging/src/index.ts",
"packages/vc-export/src/index.ts",
"packages/sdk-js/src/index.ts",
],
"out": "docs/api",
"theme": "default",
"exclude": [
"**/*spec.ts",
"**/__mocks__/**",
"**/testingTools/**",
"**/*.js",
"**/node_modules/**",
"**/__integrationtests__/**"
],
"excludeExternals": true,
"excludePrivate": true,
"hideGenerator": true,
"name": "API Documentation",
"listInvalidSymbolLinks": true,
"readme": "README.md"
}
}