12 lines
295 B
TypeScript
12 lines
295 B
TypeScript
/* eslint-disable */
|
|
export default {
|
|
transform: {
|
|
'^.+\\.[tj]sx?$': ['ts-jest', { tsconfig: '<rootDir>/tsconfig.spec.json' }],
|
|
},
|
|
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'html'],
|
|
maxWorkers: 1,
|
|
globals: {},
|
|
displayName: 'e2e-next',
|
|
preset: '../../jest.preset.js',
|
|
};
|