From 2fb8239fe92ad84d98052d0f1c76266de97652fd Mon Sep 17 00:00:00 2001 From: Nawaz Dhandala Date: Tue, 16 Dec 2025 11:34:02 +0000 Subject: [PATCH] refactor: Simplify tsconfig structure in jest.config.json --- MCP/jest.config.json | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/MCP/jest.config.json b/MCP/jest.config.json index e5a3c37d53..2d0d5905ae 100644 --- a/MCP/jest.config.json +++ b/MCP/jest.config.json @@ -21,13 +21,11 @@ "transform": { "^.+\\.ts$": ["ts-jest", { "tsconfig": { - "compilerOptions": { - "noUnusedLocals": false, - "noUnusedParameters": false, - "strict": false, - "noPropertyAccessFromIndexSignature": false, - "module": "commonjs" - } + "noUnusedLocals": false, + "noUnusedParameters": false, + "strict": false, + "noPropertyAccessFromIndexSignature": false, + "module": "commonjs" } }] }