jest.config.js 130 B

1234567
  1. module.exports = {
  2. roots: ['<rootDir>/test'],
  3. testMatch: ['**/*.test.ts'],
  4. transform: {
  5. '^.+\\.tsx?$': 'ts-jest'
  6. }
  7. };