module.exports = { testEnvironment: 'node', transform: { '^.+\\.tsx?$': ['ts-jest', { tsconfig: 'tsconfig.json' }] }, testRegex: '(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$', moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'], moduleNameMapper: { '^obsidian$': '/tests/__mocks__/obsidian.js' }, setupFiles: ['/tests/setup.js'], transformIgnorePatterns: [ 'node_modules/(?!(obsidian)/)' ], testPathIgnorePatterns: [ '/node_modules/', '/dist/' ] };