From fbbd9159ebb7845212d08ad469599c58c5cb90d8 Mon Sep 17 00:00:00 2001 From: MapleLeaf <19603573+itsMapleLeaf@users.noreply.github.com> Date: Thu, 30 Dec 2021 16:34:59 -0600 Subject: [PATCH] generate html docs in public folder --- packages/docs/.gitignore | 1 + packages/docs/typedoc.json | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/packages/docs/.gitignore b/packages/docs/.gitignore index 9976d67..0dfa207 100644 --- a/packages/docs/.gitignore +++ b/packages/docs/.gitignore @@ -2,6 +2,7 @@ node_modules /.cache /build /public/build +/public/docs .env .vscode app/docs.json diff --git a/packages/docs/typedoc.json b/packages/docs/typedoc.json index c27249a..9bdbc6c 100644 --- a/packages/docs/typedoc.json +++ b/packages/docs/typedoc.json @@ -1,10 +1,11 @@ { "entryPoints": ["../reacord/library/main.ts"], + "out": ["public/docs/api"], "tsconfig": "../reacord/tsconfig.json", - "json": "./app/docs.json", "excludeInternal": true, "excludePrivate": true, "excludeProtected": true, "categorizeByGroup": false, - "preserveWatchOutput": true + "preserveWatchOutput": true, + "githubPages": false }