jest.config.js 168 B

1234567891011
  1. module.exports = {
  2. transform: {
  3. ".ts": 'ts-jest'
  4. },
  5. testRegex: '.+\\.test\\.ts$',
  6. testPathIgnorePatterns: [
  7. "esm",
  8. "lib",
  9. "node_modules"
  10. ]
  11. };