module.exports = { rootDir: '../../', preset: 'ts-jest/presets/js-with-ts', setupFilesAfterEnv: ['/tests/unit/setupTests.ts'], globals: { 'ts-jest': { tsConfig: 'jest.tsconfig.json' } }, moduleFileExtensions: ['js', 'json', 'jsx', 'ts', 'tsx', 'node', 'md'], moduleNameMapper: { '.+\\.(css|styl|less|sass|scss)$': 'identity-obj-proxy', '.+\\.(jpg|jpeg|png|gif|eot|otf|webp|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga|md)$': '/tests/unit/__mocks__/fileMock.js', '\\.svg': '/tests/unit/__mocks__/svgrMock.js', 'next/router': '/tests/unit/__mocks__/nextRouter.js' }, testPathIgnorePatterns: [ '/.next', '/node_modules', '/build', '/coverage' ], collectCoverageFrom: [ '/src/**/*.{ts,tsx}', '!/src/@types/**/*', '!/src/**/*.stories.{ts,tsx}' ], collectCoverage: true }