jest.config.js 283 B

1234567891011121314
  1. module.exports = {
  2. rootDir: './src',
  3. transform: {
  4. '^.+\\.(ts|tsx)$': 'ts-jest',
  5. },
  6. testEnvironment: 'jsdom',
  7. setupFiles: [
  8. './js/test/jest/setup.ts',
  9. ],
  10. transformIgnorePatterns: [
  11. '<rootDir>/node_modules/@babel',
  12. '<rootDir>/node_modules/@jest',
  13. ],
  14. };