10 lines
258 B
JavaScript
10 lines
258 B
JavaScript
module.exports = {
|
|
name: 'react',
|
|
preset: '../../jest.config.js',
|
|
transform: {
|
|
'^.+\\.[tj]sx?$': 'ts-jest',
|
|
},
|
|
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'html'],
|
|
globals: { 'ts-jest': { tsConfig: '<rootDir>/tsconfig.spec.json' } },
|
|
};
|