You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
323 B
15 lines
323 B
4 years ago
|
module.exports = {
|
||
4 years ago
|
displayName: 'common',
|
||
4 years ago
|
preset: '../../jest.preset.js',
|
||
|
globals: {
|
||
|
'ts-jest': {
|
||
|
tsConfig: '<rootDir>/tsconfig.spec.json'
|
||
|
}
|
||
|
},
|
||
|
transform: {
|
||
|
'^.+\\.[tj]sx?$': 'ts-jest'
|
||
|
},
|
||
|
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'],
|
||
4 years ago
|
coverageDirectory: '../../coverage/libs/common'
|
||
4 years ago
|
};
|