From 3c6b3a1dd69692c3d5f94ad166eff5986f67dccd Mon Sep 17 00:00:00 2001 From: freshgum Date: Thu, 2 Nov 2023 17:43:15 +0000 Subject: [PATCH] fix(typedoc): update path to tsconfig --- typedoc.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/typedoc.config.js b/typedoc.config.js index 3beae928..5d4c07b8 100644 --- a/typedoc.config.js +++ b/typedoc.config.js @@ -1,4 +1,5 @@ const { repository, name } = require('./package.json'); +const { TYPESCRIPT_CONFIGURATIONS } = require('./scripts/getTsConfigFiles.cjs'); const repositoryURL = repository.url.replace(/\/?\.git$/i, ''); @@ -33,7 +34,7 @@ var configuration = { /** The README is included in the index.html page. */ readme: 'README.md', - tsconfig: 'tsconfig.typedoc.json', + tsconfig: TYPESCRIPT_CONFIGURATIONS.Spec, out: './docs/static/api-reference/', pretty: true, titleLink: repository.url,