Skip to content

Commit ffc7df2

Browse files
committed
refactor(website): simplify TypeDoc entry points to module files only
Reduced entry points to only NestJS module files for cleaner API docs.
1 parent 328a951 commit ffc7df2

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

apps/website/docusaurus.config.js

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -133,24 +133,15 @@ const config = {
133133
[
134134
"docusaurus-plugin-typedoc",
135135
{
136-
// Entry points - backend module files (excluding models with Sequelize references)
136+
// Entry points - backend NestJS modules only
137137
entryPoints: [
138138
"../backend/src/auth/auth.module.ts",
139-
"../backend/src/auth/auth.controller.ts",
140-
"../backend/src/auth/auth.service.ts",
141139
"../backend/src/ceremonies/ceremonies.module.ts",
142-
"../backend/src/ceremonies/ceremonies.controller.ts",
143-
"../backend/src/ceremonies/ceremonies.service.ts",
144140
"../backend/src/circuits/circuits.module.ts",
145-
"../backend/src/circuits/circuits.controller.ts",
146141
"../backend/src/contributions/contributions.module.ts",
147-
"../backend/src/contributions/contributions.controller.ts",
148142
"../backend/src/participants/participants.module.ts",
149-
"../backend/src/participants/participants.controller.ts",
150143
"../backend/src/projects/projects.module.ts",
151-
"../backend/src/projects/projects.controller.ts",
152144
"../backend/src/users/users.module.ts",
153-
"../backend/src/users/users.controller.ts",
154145
],
155146

156147
// TypeScript configuration

0 commit comments

Comments
 (0)