nx/apps/dep-graph-client/jest.config.js
2021-03-12 13:49:21 -07:00

16 lines
387 B
JavaScript

module.exports = {
name: 'dep-graph-client',
preset: '../../jest.preset.js',
setupFilesAfterEnv: ['<rootDir>/src/test-setup.ts'],
globals: {
'ts-jest': {
tsConfig: '<rootDir>/tsconfig.spec.json',
},
},
transform: {
'^.+\\.[tj]s$': 'ts-jest',
},
moduleFileExtensions: ['ts', 'js', 'html'],
coverageDirectory: '../../coverage/apps/dep-graph-client',
};