29 lines
615 B
TypeScript
29 lines
615 B
TypeScript
|
|
import type {JestConfigWithTsJest} from 'ts-jest';
|
||
|
|
|
||
|
|
const jestConfig: JestConfigWithTsJest = {
|
||
|
|
clearMocks: true,
|
||
|
|
testEnvironment: 'node',
|
||
|
|
moduleFileExtensions: ['js', 'ts'],
|
||
|
|
testMatch: ['**/*.test.ts'],
|
||
|
|
testRunner: 'jest-circus/runner',
|
||
|
|
extensionsToTreatAsEsm: ['.ts'],
|
||
|
|
moduleNameMapper: {
|
||
|
|
'^(\\.{1,2}/.*)\\.js$': '$1'
|
||
|
|
},
|
||
|
|
transform: {
|
||
|
|
'^.+\\.ts$': [
|
||
|
|
'ts-jest',
|
||
|
|
{
|
||
|
|
useESM: true,
|
||
|
|
diagnostics: {
|
||
|
|
ignoreCodes: [151002]
|
||
|
|
}
|
||
|
|
}
|
||
|
|
]
|
||
|
|
},
|
||
|
|
transformIgnorePatterns: ['node_modules/(?!(@actions)/)'],
|
||
|
|
verbose: true
|
||
|
|
};
|
||
|
|
|
||
|
|
export default jestConfig;
|