-
Notifications
You must be signed in to change notification settings - Fork 316
Expand file tree
/
Copy pathtsconfig.json
More file actions
44 lines (44 loc) · 1.33 KB
/
tsconfig.json
File metadata and controls
44 lines (44 loc) · 1.33 KB
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
{
"extends": "./tsconfig.build.json",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@stacks/api": ["packages/api/src"],
"@stacks/auth": ["packages/auth/src"],
"@stacks/bns": ["packages/bns/src"],
"@stacks/cli": ["packages/cli/src"],
"@stacks/common": ["packages/common/src"],
"@stacks/encryption": ["packages/encryption/src"],
"@stacks/internal": ["packages/internal/src"],
"@stacks/network": ["packages/network/src"],
"@stacks/profile": ["packages/profile/src"],
"@stacks/stacking": ["packages/stacking/src"],
"@stacks/storage": ["packages/storage/src"],
"@stacks/transactions": ["packages/transactions/src"],
"@stacks/wallet-sdk": ["packages/wallet-sdk/src"]
}
},
"exclude": ["**/node_modules", "**/dist"],
"typedocOptions": {
"name": "Stacks.js",
"entryPointStrategy": "packages",
"entryPoints": [
"packages/api",
"packages/auth",
"packages/encryption",
"packages/network",
"packages/stacking",
"packages/transactions",
"packages/bns",
"packages/common",
"packages/profile",
"packages/storage",
"packages/wallet-sdk"
],
"json": "docs/docs.json",
"out": "docs",
"excludePrivate": true,
"excludeProtected": true,
"categoryOrder": ["*", "Other"]
}
}