Files
stacks.js/tsconfig.json
janniks c13748238c build: update dependencies (#1540)
* build: update dependencies

* build: update audit dependencies

* chore: remove bootstrap

* chore: update eslint config

* build: fix lint

* build: update esbuild loader

---------

Co-authored-by: janniks <janniks@users.noreply.github.com>
2023-09-04 18:06:55 +02:00

59 lines
1.8 KiB
JSON

{
"extends": "./tsconfig.build.json",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@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/keychain": ["packages/keychain/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/*", 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",
"plugin": ["typedoc-plugin-replace-text"],
"replaceText": {
"replacements": [
{
"pattern": "https://github.com/hirosystems/stacks.js/tree/main/packages/wallet-sdk",
"replace": "/modules/_stacks_wallet_sdk"
},
{
"pattern": "https://github.com/hirosystems/stacks.js/tree/main/packages/",
"replace": "/modules/_stacks_"
}
]
}
}
}