From 2bdcd1127edc341c2030bd7f90f44a4caf3d9388 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Tue, 29 Aug 2023 00:12:23 +0200 Subject: [PATCH] build: refine build paths, take 2 MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- rollup.config.mjs | 4 ++-- typedoc.json | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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 } -- 2.34.1