docs: fixed typedoc configs
This commit is contained in:
parent
3ef585efb2
commit
03c8f24f2f
2 changed files with 5 additions and 5 deletions
|
@ -3,10 +3,10 @@ module.exports = {
|
||||||
entryPoints: [
|
entryPoints: [
|
||||||
'./src/index.ts',
|
'./src/index.ts',
|
||||||
'./src/utils/index.ts',
|
'./src/utils/index.ts',
|
||||||
'./src/utils/crypto/node.ts',
|
'./src/highlevel/client.ts',
|
||||||
'./src/utils/crypto/web.ts',
|
'./src/highlevel/worker/index.ts',
|
||||||
'./src/network/transports/tcp.ts',
|
'./src/highlevel/methods.ts',
|
||||||
'./src/network/transports/websocket.ts',
|
'./src/platform.ts',
|
||||||
],
|
],
|
||||||
entryPointStrategy: 'expand',
|
entryPointStrategy: 'expand',
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
module.exports = {
|
module.exports = {
|
||||||
extends: ['../../.config/typedoc/config.base.cjs'],
|
extends: ['../../.config/typedoc/config.base.cjs'],
|
||||||
entryPoints: ['./src'],
|
entryPoints: ['./src/index.ts'],
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue