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 /.cache
/build /build
/public/build /public/build
/public/docs
.env .env
.vscode .vscode
app/docs.json app/docs.json

View File

@@ -1,10 +1,11 @@
{ {
"entryPoints": ["../reacord/library/main.ts"], "entryPoints": ["../reacord/library/main.ts"],
"out": ["public/docs/api"],
"tsconfig": "../reacord/tsconfig.json", "tsconfig": "../reacord/tsconfig.json",
"json": "./app/docs.json",
"excludeInternal": true, "excludeInternal": true,
"excludePrivate": true, "excludePrivate": true,
"excludeProtected": true, "excludeProtected": true,
"categorizeByGroup": false, "categorizeByGroup": false,
"preserveWatchOutput": true "preserveWatchOutput": true,
"githubPages": false
} }