generate html docs in public folder

This commit is contained in:
MapleLeaf
2021-12-30 16:34:59 -06:00
parent 00e36ed81b
commit fbbd9159eb
2 changed files with 4 additions and 2 deletions

View File

@@ -2,6 +2,7 @@ node_modules
/.cache
/build
/public/build
/public/docs
.env
.vscode
app/docs.json

View File

@@ -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
}