mirror of
https://github.com/softprops/action-gh-release.git
synced 2024-11-27 05:48:39 +03:00
17 lines
378 B
TypeScript
17 lines
378 B
TypeScript
|
import type { JestConfigWithTsJest } from 'ts-jest';
|
||
|
|
||
|
const config: JestConfigWithTsJest = {
|
||
|
preset: 'ts-jest/presets/default-esm',
|
||
|
clearMocks: true,
|
||
|
moduleFileExtensions: ['js', 'ts'],
|
||
|
testEnvironment: 'node',
|
||
|
testMatch: ['**/*.test.ts'],
|
||
|
testRunner: 'jest-circus/runner',
|
||
|
transform: {
|
||
|
'^.+\\.ts$': 'ts-jest',
|
||
|
},
|
||
|
verbose: true,
|
||
|
};
|
||
|
|
||
|
export default config;
|