-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathtypedoc.json
43 lines (43 loc) · 1.64 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
{
"entryPoints": ["./src/index.ts"],
"out": "docs",
"includeVersion": true,
"plugin": ["typedoc-plugin-replace-text"],
"externalSymbolLinkMappings": {
"ethers": {
"TransactionRequest": "https://docs.ethers.org/v6/api/providers/#TransactionRequest",
"TransactionResponse": "https://docs.ethers.org/v6/api/providers/#TransactionResponse",
"TransactionReceipt": "https://docs.ethers.org/v6/api/providers/#TransactionReceipt",
"TransactionLike": "https://docs.ethers.org/v6/api/transaction/#TransactionLike",
"Transaction": "https://docs.ethers.org/v6/api/transaction/#Transaction",
"Block": "https://docs.ethers.org/v6/api/providers/#Block",
"Log": "https://docs.ethers.org/v6/api/providers/#Log",
"LogParams": "https://docs.ethers.org/v6/api/providers/#LogParams",
"VoidSigner": "https://docs.ethers.org/v6/api/providers/abstract-signer/#VoidSigner",
"Wallet": "https://docs.ethers.org/v6/api/wallet/#Wallet",
"ContractFactory": "https://docs.ethers.org/v6/api/contract/#ContractFactory",
"BrowserProvider": "https://docs.ethers.org/v6/api/providers/#BrowserProvider",
"JsonRpcProvider": "https://docs.ethers.org/v6/api/providers/jsonrpc/#JsonRpcProvider",
"Overrides": "https://docs.ethers.org/v6/api/contract/#Overrides"
}
},
"replaceText": {
"inCodeCommentText": true,
"inCodeCommentTags": true,
"inMarkdown": false,
"replacements": [
{
"pattern": "%%([^%]*)%%",
"replace": "`$1`"
},
{
"pattern": "\\[\\[",
"replace": "`"
},
{
"pattern": "\\]\\]",
"replace": "`"
}
]
}
}