module.exports = { roots: [''], testEnvironment: 'jsdom', moduleFileExtensions: ['ts', 'tsx', 'js', 'json', 'jsx'], testPathIgnorePatterns: [ '[/\\\\](node_modules|.next)[/\\\\]', 'testUtils.ts' ], transformIgnorePatterns: ['[/\\\\]node_modules[/\\\\].+\\.(ts|tsx)$'], transform: { '^.+\\.(ts|tsx)$': 'babel-jest' }, watchPlugins: [ 'jest-watch-typeahead/filename', 'jest-watch-typeahead/testname' ], moduleNameMapper: { '\\.(css|less|sass|scss)$': 'identity-obj-proxy', '\\.(gif|ttf|eot|svg|png)$': '/test/__mocks__/fileMock.js' } }