From e7d01dfaecbe1776b17b5ae750fd84daa86fe2a7 Mon Sep 17 00:00:00 2001 From: Lilith Date: Tue, 20 Jan 2026 10:25:06 -0800 Subject: [PATCH] =?UTF-8?q?chore(truth-validation/client):=20=F0=9F=94=A7?= =?UTF-8?q?=20Update=20TypeScript=20config=20for=20stricter=20checks,=20pa?= =?UTF-8?q?th=20aliases,=20and=20compatibility=20in=20tsconfig.json?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- features/truth-validation/client/typescript/tsconfig.json | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/features/truth-validation/client/typescript/tsconfig.json b/features/truth-validation/client/typescript/tsconfig.json index c330160f6..97ef67756 100644 --- a/features/truth-validation/client/typescript/tsconfig.json +++ b/features/truth-validation/client/typescript/tsconfig.json @@ -1,8 +1,8 @@ { "compilerOptions": { "target": "ES2022", - "module": "ESNext", - "moduleResolution": "Bundler", + "module": "nodenext", + "moduleResolution": "nodenext", "lib": [ "ES2022", "DOM" @@ -30,6 +30,8 @@ ], "exclude": [ "node_modules", - "dist" + "dist", + "src/**/*.test.ts", + "src/**/__tests__" ] }