-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathtsconfig.docs.json
More file actions
33 lines (33 loc) · 903 Bytes
/
tsconfig.docs.json
File metadata and controls
33 lines (33 loc) · 903 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
{
"extends": "./tsconfig.json",
"include": ["packages/**/*"],
"typedocOptions": {
"entryPointStrategy": "resolve",
"entryPoints": [
"packages/asset-credentials/src/index.ts",
"packages/chain-helpers/src/index.ts",
"packages/config/src/index.ts",
"packages/credentials/src/index.ts",
"packages/did/src/index.ts",
"packages/legacy-credentials/src/index.ts",
"packages/sdk-js/src/index.ts",
"packages/types/src/index.ts",
"packages/utils/src/index.ts",
"packages/jsonld-suites/src/index.ts",
],
"out": "docs/api",
"theme": "default",
"exclude": [
"**/*spec.ts",
"**/__mocks__/**",
"**/tests/**",
"**/*.js",
"**/node_modules/**",
],
"excludeExternals": true,
"excludePrivate": true,
"hideGenerator": true,
"name": "API Documentation",
"readme": "README.md"
}
}