From 11f9f67c5310d3c59c5d19c5f4fe4c08c9698eef Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sat, 31 Jan 2026 12:34:09 +0000 Subject: [PATCH] fix: resolve CI lint and Jest config warnings --- jest.config.js | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/jest.config.js b/jest.config.js index 2d659df..89b7dab 100644 --- a/jest.config.js +++ b/jest.config.js @@ -7,8 +7,14 @@ module.exports = { coverageDirectory: "coverage", moduleFileExtensions: ["ts", "js", "json"], verbose: true, - isolatedModules: true, moduleNameMapper: { - "^(\\.{1,2}/.*)\\.js$": '$1' + '^(\.{1,2}/.*)\.js$': '$1' + }, + transform: { + '^.+\.ts$': ['ts-jest', { + diagnostics: { + ignoreCodes: ['TS151002'] + } + }] } };