mirror of https://github.com/ghostfolio/ghostfolio
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.
14 lines
314 B
14 lines
314 B
4 years ago
|
module.exports = {
|
||
4 years ago
|
displayName: 'common',
|
||
3 years ago
|
|
||
4 years ago
|
globals: {
|
||
4 years ago
|
'ts-jest': { tsconfig: '<rootDir>/tsconfig.spec.json' }
|
||
4 years ago
|
},
|
||
|
transform: {
|
||
|
'^.+\\.[tj]sx?$': 'ts-jest'
|
||
|
},
|
||
|
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'],
|
||
3 years ago
|
coverageDirectory: '../../coverage/libs/common',
|
||
|
preset: '../../jest.preset.ts'
|
||
4 years ago
|
};
|