docs: fixed typedoc configs

This commit is contained in:
alina 🌸 2024-03-15 23:38:39 +03:00
parent 3ef585efb2
commit 03c8f24f2f
Signed by: teidesu
SSH key fingerprint: SHA256:uNeCpw6aTSU4aIObXLvHfLkDa82HWH9EiOj9AXOIRpI
2 changed files with 5 additions and 5 deletions

View file

@ -3,10 +3,10 @@ module.exports = {
entryPoints: [
'./src/index.ts',
'./src/utils/index.ts',
'./src/utils/crypto/node.ts',
'./src/utils/crypto/web.ts',
'./src/network/transports/tcp.ts',
'./src/network/transports/websocket.ts',
'./src/highlevel/client.ts',
'./src/highlevel/worker/index.ts',
'./src/highlevel/methods.ts',
'./src/platform.ts',
],
entryPointStrategy: 'expand',
}

View file

@ -1,4 +1,4 @@
module.exports = {
extends: ['../../.config/typedoc/config.base.cjs'],
entryPoints: ['./src'],
entryPoints: ['./src/index.ts'],
}