module.exports = { projects: [ { displayName: 'backend', preset: 'ts-jest', testEnvironment: 'node', roots: [__dirname], testMatch: ['/backend/**/*.spec.ts'], transform: { '^.+\\.ts$': ['ts-jest', { tsconfig: '/backend.tsconfig.json' }], }, }, { displayName: 'frontend', preset: 'ts-jest', testEnvironment: 'jsdom', roots: [__dirname], testMatch: ['/frontend/**/*.spec.ts'], transform: { '^.+\\.ts$': ['ts-jest', { tsconfig: '/frontend.tsconfig.json' }], }, setupFiles: ['/frontend/jest.setup.ts'], }, ], };