10 lines
272 B
JavaScript
10 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' }],
|
|
}
|
|
};
|