Files
stacks.js/tsconfig.typedoc.json
2022-11-07 23:59:30 +01:00

48 lines
1.1 KiB
JSON

{
"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_"
}
]
}
}
}