/** @type {import('jest').Config} */ module.exports = { preset: 'ts-jest', testEnvironment: 'node', roots: ['/tests'], testMatch: ['**/*.test.ts'], moduleNameMapper: { '^obsidian$': '/tests/__mocks__/obsidian.ts', }, globals: { 'ts-jest': { tsconfig: { module: 'commonjs', strict: true, }, }, }, };