1/** @type {import('ts-jest').JestConfigWithTsJest} */ 2module.exports = { 3 preset: 'ts-jest', 4 testEnvironment: 'node', 5 testMatch: ['**/?(*.)+(spec|test).ts?(x)'], 6 moduleNameMapper: { 7 ".+\\.(svg|css)$": "identity-obj-proxy" 8 } 9}; 10 11