upgrade octokit dependencies

This commit is contained in:
Lokesh Gopu
2026-01-22 11:59:59 -05:00
parent ee91adfbc4
commit f61ae48376
9 changed files with 217 additions and 225 deletions
+10 -1
View File
@@ -4,7 +4,16 @@ module.exports = {
testEnvironment: 'node',
testMatch: ['**/*.test.ts'],
transform: {
'^.+\\.ts$': 'ts-jest'
'^.+\\.(ts|js)$': ['ts-jest', {
useESM: false,
tsconfig: {
allowJs: true,
esModuleInterop: true
}
}]
},
transformIgnorePatterns: [
'/node_modules/(?!(@octokit|universal-user-agent|before-after-hook)/)'
],
verbose: true
}