first commit

This commit is contained in:
Mr Cheff 2024-12-25 23:45:00 +01:00 committed by mr. M
commit 232d8b37d6
No known key found for this signature in database
GPG key ID: CBD57A2AEDBDA1FB
36 changed files with 11302 additions and 0 deletions

22
jest.config.js Normal file
View file

@ -0,0 +1,22 @@
// jest.config.js
module.exports = {
preset: 'ts-jest/presets/default-esm',
testEnvironment: 'node',
moduleFileExtensions: ['js', 'json', 'ts'],
maxWorkers: 1,
rootDir: '.',
testRegex: '.e2e-spec.ts$',
transform: {
'^.+\\.(t|j)s$': ['ts-jest', { useESM: true }],
},
transformIgnorePatterns: [
'/node_modules/(?!(\\@octokit)/)',
],
globals: {
'ts-jest': {
tsconfig: 'tsconfig.json',
useESM: true,
},
},
};