11 lines
310 B
TypeScript
11 lines
310 B
TypeScript
export default {
|
|
displayName: 'ebitemp-api',
|
|
preset: '../../jest.preset.js',
|
|
testEnvironment: 'node',
|
|
transform: {
|
|
'^.+\\.[tj]s$': ['ts-jest', { tsconfig: '<rootDir>/tsconfig.spec.json' }]
|
|
},
|
|
moduleFileExtensions: ['ts', 'js', 'html'],
|
|
coverageDirectory: '../../coverage/apps/ebitemp-api'
|
|
};
|