Use a better regex to avoid transforming all modules

This commit is contained in:
Sergio Padrino 2022-01-11 13:15:33 +01:00
parent a721b10339
commit 84c8f04815

View file

@ -22,5 +22,6 @@ module.exports = {
],
reporters: ['default', '<rootDir>../script/jest-actions-reporter.js'],
coverageReporters: ['text-summary', 'json', 'html', 'cobertura'],
transformIgnorePatterns: ['node_modules/temp'],
// For now, @github Node modules required to be transformed by jest-esm-transformer
transformIgnorePatterns: ['node_modules/(?!(@github))'],
}