mirror of
https://github.com/matrix-org/matrix-js-sdk.git
synced 2025-04-18 07:04:03 +03:00
Currently the crypto-api hierarchy is exposed only as a `Crypto` namespace under the "matrix" entrypoint in the documentation. This isn't really right: it's meant to be a separate entrypoint (in the same way as `types`, `testing` and `utils` are). This PR fixes that problem.
9 lines
348 B
JSON
9 lines
348 B
JSON
{
|
|
"$schema": "https://typedoc.org/schema.json",
|
|
"plugin": ["typedoc-plugin-mdn-links", "typedoc-plugin-missing-exports", "typedoc-plugin-coverage"],
|
|
"coverageLabel": "TypeDoc",
|
|
"entryPoints": ["src/matrix.ts", "src/crypto-api", "src/types.ts", "src/testing.ts", "src/utils/*.ts"],
|
|
"excludeExternals": true,
|
|
"out": "_docs"
|
|
}
|