diff --git a/jest.config.js b/jest.config.js index 55322fd..ad4cff0 100644 --- a/jest.config.js +++ b/jest.config.js @@ -3,8 +3,13 @@ module.exports = { testEnvironment: 'node', testPathIgnorePatterns: ['/dist/', '/node_modules/'], globals: { - 'ts-jest': { - diagnostics: { warnOnly: true }, + transform: { + '*': [ + 'ts-jest', + { + diagnostics: { warnOnly: true }, + }, + ], }, }, };