17 lines
382 B
TypeScript
17 lines
382 B
TypeScript
module.exports = {
|
|
displayName: 'nx-dev-models-document',
|
|
|
|
globals: {
|
|
'ts-jest': {
|
|
tsconfig: '<rootDir>/tsconfig.spec.json',
|
|
},
|
|
},
|
|
testEnvironment: 'node',
|
|
transform: {
|
|
'^.+\\.[tj]sx?$': 'ts-jest',
|
|
},
|
|
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'],
|
|
coverageDirectory: '../../coverage/nx-dev/models-document',
|
|
preset: '../../jest.preset.ts',
|
|
};
|