14 lines
314 B
14 lines
314 B
module.exports = {
|
|
displayName: 'common',
|
|
|
|
globals: {
|
|
'ts-jest': { tsconfig: '<rootDir>/tsconfig.spec.json' }
|
|
},
|
|
transform: {
|
|
'^.+\\.[tj]sx?$': 'ts-jest'
|
|
},
|
|
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'],
|
|
coverageDirectory: '../../coverage/libs/common',
|
|
preset: '../../jest.preset.ts'
|
|
};
|