From cb5218d4cb212f127c55c16b6277c1a1fc44bb79 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sat, 31 Jan 2026 12:25:54 +0000 Subject: [PATCH] Initial upload with CI/CD workflow --- jest.config.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 jest.config.js diff --git a/jest.config.js b/jest.config.js new file mode 100644 index 0000000..2d659df --- /dev/null +++ b/jest.config.js @@ -0,0 +1,14 @@ +module.exports = { + preset: "ts-jest", + testEnvironment: "node", + roots: ["/tests", "/src"], + testMatch: ["**/*.test.ts"], + collectCoverageFrom: ["src/**/*.ts"], + coverageDirectory: "coverage", + moduleFileExtensions: ["ts", "js", "json"], + verbose: true, + isolatedModules: true, + moduleNameMapper: { + "^(\\.{1,2}/.*)\\.js$": '$1' + } +};