From 988f6acef1b5cc1f9a476f7e7c21a39cb6081d51 Mon Sep 17 00:00:00 2001 From: Michael Brevard Date: Fri, 7 Nov 2025 15:56:17 +0200 Subject: [PATCH] fix(ts): update moduleResolution to adhere to TS6 deprecation --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 74fb09c6ff8..05e7d6a1ea9 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,7 +6,7 @@ "alwaysStrict": true, "target": "ES2023", "module": "commonJS", - "moduleResolution": "node", + "moduleResolution": "node16", "skipLibCheck": true, "lib": [ "es2023" @@ -43,4 +43,4 @@ "include": [ "src/**/*" ] -} \ No newline at end of file +}