jest.config.js 126 B

1234567
  1. module.exports = {
  2. rootDir : './src',
  3. transform: {
  4. '^.+\\.(ts|tsx)$': 'ts-jest',
  5. },
  6. testEnvironment: 'jsdom',
  7. };