From 940456914629400e0d503b6c7c24b861edf7a7e7 Mon Sep 17 00:00:00 2001 From: Gyanesh Gouraw Date: Thu, 17 Sep 2026 18:37:18 +0530 Subject: [PATCH 1/2] fix: update TypeDoc configuration to use docs-only tsconfig --- projects/auth0-angular/tsconfig.doc.json | 7 +++++++ typedoc.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 projects/auth0-angular/tsconfig.doc.json diff --git a/projects/auth0-angular/tsconfig.doc.json b/projects/auth0-angular/tsconfig.doc.json new file mode 100644 index 00000000..c9a5278e --- /dev/null +++ b/projects/auth0-angular/tsconfig.doc.json @@ -0,0 +1,7 @@ +/* Docs-only config. Same as tsconfig.lib.json, but scoped to src/ so typedoc's + program excludes schematics/, which needs Node types the library build omits. */ +{ + "extends": "./tsconfig.lib.json", + "include": ["src/**/*.ts"], + "exclude": ["**/*.spec.ts"] +} diff --git a/typedoc.json b/typedoc.json index fbf84916..cbb13805 100644 --- a/typedoc.json +++ b/typedoc.json @@ -1,7 +1,7 @@ { "entryPoints": ["./projects/auth0-angular/src/public-api.ts"], "exclude": ["**/*.spec.ts"], - "tsconfig": "./projects/auth0-angular/tsconfig.lib.json", + "tsconfig": "./projects/auth0-angular/tsconfig.doc.json", "out": "docs", "excludeExternals": false, "excludePrivate": true, From 9d8f412aea5d135855b798980ccbdec60003d490 Mon Sep 17 00:00:00 2001 From: Gyanesh Gouraw Date: Thu, 17 Sep 2026 19:00:26 +0530 Subject: [PATCH 2/2] fix: remove unnecessary comments from docs-only tsconfig --- projects/auth0-angular/tsconfig.doc.json | 2 -- 1 file changed, 2 deletions(-) diff --git a/projects/auth0-angular/tsconfig.doc.json b/projects/auth0-angular/tsconfig.doc.json index c9a5278e..687ade79 100644 --- a/projects/auth0-angular/tsconfig.doc.json +++ b/projects/auth0-angular/tsconfig.doc.json @@ -1,5 +1,3 @@ -/* Docs-only config. Same as tsconfig.lib.json, but scoped to src/ so typedoc's - program excludes schematics/, which needs Node types the library build omits. */ { "extends": "./tsconfig.lib.json", "include": ["src/**/*.ts"],