9 строки
215 B
JavaScript
9 строки
215 B
JavaScript
/** @type {import('ts-jest').JestConfigWithTsJest} **/
|
|||
module.exports = {
|
|||
testEnvironment: 'node',
|
|||
testMatch: ['<rootDir>/src/**/*.test.ts'],
|
|||
transform: {
|
|||
'^.+.tsx?$': ['ts-jest', {}],
|
|||
},
|
|||
};
|