11 lines
311 B
TypeScript
11 lines
311 B
TypeScript
module.exports = {
|
|
displayName: 'shared-dto',
|
|
preset: '../../jest.preset.js',
|
|
testEnvironment: 'node',
|
|
transform: {
|
|
'^.+\\.[tj]s$': ['ts-jest', { tsconfig: '<rootDir>/tsconfig.spec.json' }]
|
|
},
|
|
moduleFileExtensions: ['ts', 'js', 'html'],
|
|
coverageDirectory: '../../coverage/libs/shared-dto',
|
|
};
|