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