From 93d50712a96c8bdedd0bdd7a897073706dffa5af Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sun, 4 Jan 2026 23:38:34 +0200 Subject: [PATCH] chore(scripts): fix typecheck issue --- scripts/tsconfig.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/tsconfig.json b/scripts/tsconfig.json index 47304e52ac..533c0c3792 100644 --- a/scripts/tsconfig.json +++ b/scripts/tsconfig.json @@ -5,6 +5,7 @@ "moduleResolution": "bundler", "target": "es2023", "outDir": "dist", + "rootDir": "..", "types": [ "node", "express" @@ -12,7 +13,8 @@ "tsBuildInfoFile": "dist/tsconfig.app.tsbuildinfo" }, "include": [ - "**/*.ts" + "scripts/*.ts", + "packages/commons/src/lib/i18n.ts" ], "references": [] }