diff options
Diffstat (limited to 'jest.config.js')
-rw-r--r-- | jest.config.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/jest.config.js b/jest.config.js index 4a5b465..6712a44 100644 --- a/jest.config.js +++ b/jest.config.js @@ -1,4 +1,8 @@ module.exports = { preset: 'ts-jest', testEnvironment: 'node', + 'moduleNameMapper': { + '@helpers/(.*)': '<rootDir>/src/helpers/$1', + '@types': '<rootDir>/src/types', + }, }; |