From 9b7694db0e97bde2de12e346e09094b6e0c8155d Mon Sep 17 00:00:00 2001 From: maartenvandenbrande Date: Wed, 22 Nov 2023 08:48:09 +0100 Subject: [PATCH] change typedoc configs --- typedoc.base.json | 4 ++++ typedoc.js | 11 ++--------- 2 files changed, 6 insertions(+), 9 deletions(-) create mode 100644 typedoc.base.json diff --git a/typedoc.base.json b/typedoc.base.json new file mode 100644 index 00000000..daa58cb2 --- /dev/null +++ b/typedoc.base.json @@ -0,0 +1,4 @@ +{ + "$schema": "https://typedoc.org/schema.json", + "includeVersion": true +} diff --git a/typedoc.js b/typedoc.js index 72415cfc..2eb1abcb 100644 --- a/typedoc.js +++ b/typedoc.js @@ -1,14 +1,7 @@ -const { getPackagesSync } = require('@lerna/project') -const path = require('path') - module.exports = { name: 'Incremunica', out: 'documentation', theme: 'default', - 'external-modulemap': __dirname + '/[^/]+/([^/]+)/.*', - entryPoints: getPackagesSync(__dirname).map( - pkg => path.relative(__dirname, pkg.location) - ), - excludeExternals: false, - disableOutputCheck: true + entryPointStrategy: 'packages', + entryPoints: [ 'engines/*', 'packages/*' ] }