MCP Compass

MIT License
10
7
  • Apple
  • Linux
/** @type {import('ts-jest').JestConfigWithTsJest} */ module.exports = { preset: 'ts-jest', testEnvironment: 'node', moduleFileExtensions: ['ts', 'js', 'json'], transform: { '^.+\\.ts$': ['ts-jest', { useESM: true, }], }, testMatch: ['**/__tests__/**/*.ts'], moduleNameMapper: { '^(\\.{1,2}/.*)\\.js$': '$1', }, extensionsToTreatAsEsm: ['.ts'] };