diff --git a/package.json b/package.json index 20b6837..6729032 100644 --- a/package.json +++ b/package.json @@ -23,6 +23,22 @@ ], "type": "module", "types": "./dist/src/index.d.ts", + "typesVersions": { + "*": { + "*": [ + "*", + "dist/*", + "dist/src/*", + "dist/src/*/index" + ], + "src/*": [ + "*", + "dist/*", + "dist/src/*", + "dist/src/*/index" + ] + } + }, "files": [ "src", "dist", diff --git a/typedoc.json b/typedoc.json index db0b074..579a8a2 100644 --- a/typedoc.json +++ b/typedoc.json @@ -1,6 +1,7 @@ { "readme": "none", "entryPoints": [ - "./src/index.ts" + "./src/index.ts", + "./src/crypto/index.ts" ] }