12 lines
228 B
TypeScript
12 lines
228 B
TypeScript
|
module.exports = {
|
||
|
preset: 'ts-jest',
|
||
|
testEnvironment: 'node',
|
||
|
moduleFileExtensions: ['ts', 'js'],
|
||
|
testMatch: ['**/tests/**/*.test.(ts|js)'],
|
||
|
globals: {
|
||
|
'ts-jest': {
|
||
|
tsconfig: 'tsconfig.json',
|
||
|
},
|
||
|
},
|
||
|
};
|