aboutsummaryrefslogtreecommitdiff
path: root/jest.config.ts
blob: d06ac09a60c9533bf4f43891bb8be687ad581a97 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
export default {
  roots: ['./src'],
  testMatch: ['**/__tests__/**/*.+(ts|tsx|js)', '**/?(*.)+(spec|test).+(ts|tsx|js)'],
  transform: {
    '^.+\\.(ts|tsx)$': 'ts-jest',
  },
  moduleNameMapper: {
    '^@/(.*)$': '<rootDir>/src/$1',
  },
};