jest.config.js 184 B

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