From 0abeaf9abf7bfa986524ad5e9691044a362272a0 Mon Sep 17 00:00:00 2001 From: Cameron Steffen Date: Fri, 9 Aug 2024 18:49:18 -0500 Subject: [PATCH] prog --- .gitignore | 1 + docs.css | 3 +++ typedoc.json | 5 +++-- 3 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 docs.css diff --git a/.gitignore b/.gitignore index 1eae0cf..9ececdb 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ +docs/ dist/ node_modules/ diff --git a/docs.css b/docs.css new file mode 100644 index 0000000..75d4076 --- /dev/null +++ b/docs.css @@ -0,0 +1,3 @@ +.tsd-page-title, .tsd-page-navigation, .tsd-filter-visibility { + display: none; +} diff --git a/typedoc.json b/typedoc.json index d2fc78a..1d44c4d 100644 --- a/typedoc.json +++ b/typedoc.json @@ -2,6 +2,7 @@ "$schema": "https://typedoc.org/schema.json", "entryPoints": ["./src/index.ts"], "name": "Compear", - "skipErrorChecking": true, - "plugin": ["typedoc-material-theme"] + "plugin": ["typedoc-material-theme"], + "customCss": "./docs.css", + "skipErrorChecking": true }