blakus/apps/fastify-api/jest.config.ts

11 lines
312 B
TypeScript

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