jest.config.js 227 B

12345678
  1. module.exports = {
  2. roots: ['<rootDir>/src'],
  3. transform: {
  4. '^.+\\.tsx?$': 'ts-jest',
  5. },
  6. testRegex: '(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$',
  7. moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
  8. };