From: Jérôme Benoit Date: Mon, 28 Aug 2023 22:12:23 +0000 (+0200) Subject: build: refine build paths, take 2 X-Git-Tag: v2.6.38~18 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=2bdcd1127edc341c2030bd7f90f44a4caf3d9388;p=poolifier.git build: refine build paths, take 2 Signed-off-by: Jérôme Benoit --- diff --git a/rollup.config.mjs b/rollup.config.mjs index eb622630..e0c97bd6 100644 --- a/rollup.config.mjs +++ b/rollup.config.mjs @@ -71,8 +71,8 @@ export default [ plugins: [ typescript({ tsconfig: isDevelopmentBuild - ? 'tsconfig.development.json' - : 'tsconfig.production.json' + ? './tsconfig.development.json' + : './tsconfig.production.json' }), del({ targets: ['./lib/*'] diff --git a/typedoc.json b/typedoc.json index d95b2637..22e9b77b 100644 --- a/typedoc.json +++ b/typedoc.json @@ -1,8 +1,8 @@ { "$schema": "https://typedoc.org/schema.json", "tsconfig": "tsconfig.production.json", - "entryPoints": ["src"], - "out": "docs", + "entryPoints": ["./src"], + "out": "./docs", "readme": "none", "includeVersion": true }