From eec4983868a6d82bd2afbe0c8061b31eb5a7ad53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eray=20Hano=C4=9Flu?= Date: Mon, 29 Jun 2026 15:46:02 +0300 Subject: [PATCH] chore: Add `rootDir` to tsconfig-build.json configuration --- .gitignore | 1 + tsconfig-build.json | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 657df9e..30d1d94 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,7 @@ node_modules # environment variables .env .development.env +*.tsbuildinfo # Logs logs diff --git a/tsconfig-build.json b/tsconfig-build.json index 50eea4d..fb23030 100644 --- a/tsconfig-build.json +++ b/tsconfig-build.json @@ -1,7 +1,8 @@ { "extends": ["./tsconfig-base.json", "@panates/tsconfig/build.json"], "compilerOptions": { - "outDir": "build" + "outDir": "build", + "rootDir": "src" }, "include": ["src"] }