/** @type {import('ts-jest').JestConfigWithTsJest} */ module.exports = { preset: 'ts-jest', testEnvironment: 'node', moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'], transform: { '^.+\\.tsx?$': ['ts-jest', { tsconfig: 'tsconfig.json' }] }, testMatch: ['**/__tests__/**/*.test.ts'], moduleNameMapper: { '^vscode$': '/node_modules/@types/vscode/index.d.ts' }, setupFiles: [], globals: { 'ts-jest': { diagnostics: false } } };