| 123456789101112131415161718192021222324 |
- export default {
- clearMocks: true,
- moduleFileExtensions: ['js', 'ts'],
- roots: ['<rootDir>'],
- testEnvironment: 'node',
- testMatch: ['**/*.test.ts'],
- transform: {
- '^.+\\.ts$': [
- 'ts-jest',
- {
- useESM: true,
- diagnostics: {
- ignoreCodes: [151002]
- }
- }
- ]
- },
- extensionsToTreatAsEsm: ['.ts'],
- transformIgnorePatterns: ['node_modules/(?!(@actions)/)'],
- moduleNameMapper: {
- '^(\\.{1,2}/.*)\\.js$': '$1'
- },
- verbose: true
- }
|