Skip to content

Commit 628d82a

Browse files
committed
docs(typedoc): use expand entry point strategy for folder-based organisation
Switch from single barrel entry point to directory expansion, giving TypeDoc the source folder structure (operations/, speckit/, etc.) instead of a flat re-export list. Excludes index barrel files, CLI commands, and the schema generation script.
1 parent 37c3286 commit 628d82a

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

typedoc.html.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
{
22
"$schema": "https://typedoc.org/schema.json",
3-
"entryPoints": ["./src/index.ts"],
3+
"entryPoints": ["./src"],
4+
"entryPointStrategy": "expand",
5+
"exclude": ["**/cli/**", "**/generate-schema.ts", "**/index.ts"],
46
"out": "site",
57
"plugin": ["typedoc-plugin-zod"],
68
"name": "SysProM",

typedoc.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
{
22
"$schema": "https://typedoc.org/schema.json",
3-
"entryPoints": ["./src/index.ts"],
3+
"entryPoints": ["./src"],
4+
"entryPointStrategy": "expand",
5+
"exclude": ["**/cli/**", "**/generate-schema.ts", "**/index.ts"],
46
"out": "docs/api",
57
"plugin": ["typedoc-plugin-markdown", "typedoc-plugin-zod"],
68
"name": "SysProM",

0 commit comments

Comments
 (0)