diff --git a/jest.config.js b/jest.config.js index 81f43d0..cea4fd5 100644 --- a/jest.config.js +++ b/jest.config.js @@ -1,13 +1,13 @@ module.exports = { - globals: { - "ts-jest": { - tsconfig: "tsconfig.json", - }, - }, - moduleFileExtensions: ["ts", "js"], - transform: { - "^.+\\.(ts|tsx)$": "ts-jest", - }, - testMatch: ["**/test/**/*.spec.(ts|js)"], - testEnvironment: "node", + testEnvironment: "node", + moduleFileExtensions: ["ts", "js"], + testMatch: ["**/test/**/*.spec.(ts|js)"], + transform: { + "^.+\\.(ts|tsx)$": [ + "ts-jest", + { + tsconfig: "tsconfig.json", + }, + ], + }, };