forked from hirosystems/stacks.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.typedoc.json
47 lines (47 loc) · 1.12 KB
/
tsconfig.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
44
45
46
47
{
"extends": "./tsconfig.json",
"compilerOptions": {
"target": "ES2020",
"module": "ES6"
},
"typedocOptions": {
"name": "Stacks.js",
"entryPointStrategy": "packages",
"entryPoints": [
// "packages/*", without packages/cli
"packages/auth",
"packages/encryption",
"packages/network",
"packages/stacking",
"packages/transactions",
"packages/bns",
"packages/common",
"packages/keychain",
"packages/profile",
"packages/storage",
"packages/wallet-sdk",
],
"json": "docs/docs.json",
"out": "docs",
"excludePrivate": true,
"excludeProtected": true,
"categoryOrder": [
"*",
"Other"
],
"gaID": "GTM-M8P6G7Z",
"theme": "stacks",
"replaceText": {
"replacements": [
{
"pattern": "https://github.com/hirosystems/stacks.js/tree/master/packages/wallet-sdk",
"replace": "/modules/_stacks_wallet_sdk"
},
{
"pattern": "https://github.com/hirosystems/stacks.js/tree/master/packages/",
"replace": "/modules/_stacks_"
}
]
}
}
}