build: refine build paths, take 2
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Mon, 28 Aug 2023 22:12:23 +0000 (00:12 +0200)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Mon, 28 Aug 2023 22:12:23 +0000 (00:12 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
rollup.config.mjs
typedoc.json

index eb6226303a45726ce05b2916742298f9a7a0afd9..e0c97bd6e4ebe607ec56d4c526c43206a6215393 100644 (file)
@@ -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/*']
index d95b2637da70ad05647f77debbd555d386571158..22e9b77b3c195754e1950ac4a4d94cbe080bb615 100644 (file)
@@ -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
 }