forked from LIT-Protocol/agent-wallet
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtypedoc.json
30 lines (30 loc) · 963 Bytes
/
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
{
"$schema": "https://typedoc.org/schema.json",
"entryPoints": [
"./packages/agent-wallet/src/index.ts",
"./packages/law-cli/src/index.ts",
"./packages/aw-signer/src/index.ts",
"./packages/aw-tool/src/index.ts",
"./packages/aw-tool-erc20-transfer/src/index.ts",
"./packages/aw-tool-sign-ecdsa/src/index.ts",
"./packages/aw-tool-uniswap-swap/src/index.ts",
"./packages/aw-subagent-openai/src/index.ts",
"./packages/aw-subagent-gaia/src/index.ts",
"./packages/aw-tool-registry/src/index.ts"
],
"out": "./docs/api",
"skipErrorChecking": true,
"plugin": ["typedoc-theme-hierarchy"],
"theme": "hierarchy",
"customCss": "./doc.css",
"excludePrivate": true,
"excludeProtected": true,
"excludeExternals": true,
"exclude": ["**/*+(index|.spec|.e2e|.test|.mock).ts"],
"tsconfig": "./tsconfig.docs.json",
"validation": {
"notExported": false,
"invalidLink": false,
"notDocumented": false
}
}