Files

16 lines
317 B
JavaScript

module.exports = {
clearMocks: true,
globals: {
'ts-jest': {
tsconfig: 'tsconfig.json',
},
},
moduleFileExtensions: ['ts', 'tsx', 'js'],
testEnvironment: 'node',
testMatch: ['<rootDir>/src/**/*-tests.+(ts|tsx|js)'],
transform: {
'^.+\\.(ts|tsx)$': 'ts-jest',
},
watchman: true,
};