11 lines
272 B
JavaScript
11 lines
272 B
JavaScript
|
/** @type {import('ts-jest').JestConfigWithTsJest} */
|
||
|
module.exports = {
|
||
|
testEnvironment: 'node',
|
||
|
"transformIgnorePatterns": [
|
||
|
"/node_modules/(?!lodash-es/.*)"
|
||
|
],
|
||
|
transform: {
|
||
|
'\\.[tj]sx?$': ['babel-jest', { rootMode: 'upward' }],
|
||
|
}
|
||
|
};
|