From 5040df22a7a77bbd5237e83ea8f50269b13a308b Mon Sep 17 00:00:00 2001 From: isaacs Date: Sat, 6 Apr 2024 14:35:21 -0700 Subject: [PATCH] add typedoc config --- .gitignore | 1 + typedoc.json | 8 ++++++++ 2 files changed, 9 insertions(+) create mode 100644 typedoc.json diff --git a/.gitignore b/.gitignore index 9cd7dfc..43498c1 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,7 @@ /.* !.tshy !tsconfig.json +!typedoc.json !src/ !bin/ !package.json diff --git a/typedoc.json b/typedoc.json new file mode 100644 index 0000000..c9f1a64 --- /dev/null +++ b/typedoc.json @@ -0,0 +1,8 @@ +{ + "tsconfig": "./.tshy/esm.json", + "entryPoints": ["./src/**/*.+(ts|tsx|mts|cts)"], + "navigationLinks": { + "GitHub": "https://github.com/isaacs/chownr", + "isaacs projects": "https://isaacs.github.io/" + } +}