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 }