| module.exports = { | |
| preset: 'ts-jest', | |
| testEnvironment: 'node', | |
| moduleNameMapper: { | |
| '^@/(.*)$': '<rootDir>/$1', | |
| }, | |
| moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'], | |
| testMatch: ['**/__tests__/**/*.[jt]s?(x)', '**/?(*.)+(spec|test).[jt]s?(x)'], | |
| transform: { | |
| '^.+\\.(ts|tsx)$': 'ts-jest', | |
| }, | |
| }; |