From dd325002536dc18ec342f56cd809817a06f7289a Mon Sep 17 00:00:00 2001 From: Ayo Date: Fri, 8 May 2026 14:44:20 +0200 Subject: [PATCH] chore: add rootDir in tsconfig --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 5a00557..53436de 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,7 +2,8 @@ "compilerOptions": { "target": "ES2022", "allowJs": true, - "outDir": "dist", + "outDir": "./dist", + "rootDir": "./src", "declaration": true, "emitDeclarationOnly": true },