Files
go-dependency-submission/jest.config.js
T

11 lines
262 B
JavaScript
Raw Normal View History

module.exports = {
2025-03-21 21:00:28 +00:00
transform: {
2025-03-24 16:13:49 -04:00
'^.+\\.jsx?$': 'babel-jest',
'^.+\\.tsx?$': 'babel-jest',
2025-03-21 21:00:28 +00:00
},
2025-03-24 16:13:49 -04:00
testEnvironment: 'node',
moduleFileExtensions: ['js', 'jsx', 'ts', 'tsx'],
transformIgnorePatterns: [
'/node_modules/(?!@octokit|@github)',
],
2025-03-24 16:13:49 -04:00
};