17 lines
343 B
TypeScript
17 lines
343 B
TypeScript
/* eslint-disable */
|
|
export default {
|
|
displayName: 'utils',
|
|
preset: '../../jest.preset.js',
|
|
globals: {},
|
|
transform: {
|
|
'^.+\\.[tj]s$': [
|
|
'ts-jest',
|
|
{
|
|
tsconfig: '<rootDir>/tsconfig.spec.json',
|
|
},
|
|
],
|
|
},
|
|
moduleFileExtensions: ['ts', 'js', 'html'],
|
|
coverageDirectory: '../../coverage/libs/utils',
|
|
};
|