jest.config.js 157 B

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