From 96ba07d9e6b03bc65d0bd9d2f47994ba16c555c5 Mon Sep 17 00:00:00 2001 From: Marllon Frizzo Date: Mon, 28 Jul 2025 18:48:46 -0300 Subject: [PATCH] fix: adjust the TypeScript options in Rollup to set rootDir and outDir --- rollup.config.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/rollup.config.js b/rollup.config.js index 6ff101a..b461e5d 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -72,7 +72,9 @@ export default { tsconfigOverride: { compilerOptions: { declaration: true, - declarationDir: 'dist' + declarationDir: 'dist', + rootDir: 'src', + outDir: 'dist', } } }),