|
module.exports = {
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'node',
|
|
testMatch: ['**/tests/**/*.test.ts'],
|
|
moduleFileExtensions: ['ts', 'js', 'json', 'node'],
|
|
roots: ['<rootDir>/src', '<rootDir>/tests'],
|
|
moduleNameMapper: {
|
|
'^@/(.*)$': '<rootDir>/src/$1',
|
|
},
|
|
};
|