UNPKG

harmonycode

Version:

The AI collaboration framework that prevents echo chambers - Real-time collaboration with diversity enforcement

26 lines 574 B
/** @type {import('jest').Config} */ module.exports = { preset: 'ts-jest', testEnvironment: 'node', roots: ['<rootDir>/test'], testMatch: ['**/*.test.ts'], collectCoverageFrom: [ 'core/**/*.ts', 'orchestration/**/*.ts', '!**/*.d.ts', '!**/node_modules/**' ], coverageDirectory: 'coverage', coverageReporters: ['text', 'lcov', 'html'], moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'], transform: { '^.+\\.tsx?$': 'ts-jest' }, globals: { 'ts-jest': { tsconfig: { allowJs: true } } } };