16 lines
334 B
TypeScript
16 lines
334 B
TypeScript
|
/* eslint-disable */
|
||
|
export default {
|
||
|
displayName: 'i18n',
|
||
|
preset: '../../jest.preset.js',
|
||
|
globals: {
|
||
|
'ts-jest': {
|
||
|
tsconfig: '<rootDir>/tsconfig.spec.json',
|
||
|
},
|
||
|
},
|
||
|
transform: {
|
||
|
'^.+\\.[tj]s$': 'ts-jest',
|
||
|
},
|
||
|
moduleFileExtensions: ['ts', 'js', 'html'],
|
||
|
coverageDirectory: '../../coverage/libs/i18n',
|
||
|
};
|