mirror of
https://github.com/peaceiris/actions-gh-pages.git
synced 2026-09-23 21:28:39 +00:00
23 lines
464 B
JavaScript
23 lines
464 B
JavaScript
module.exports = {
|
|
clearMocks: true,
|
|
extensionsToTreatAsEsm: ['.ts'],
|
|
moduleFileExtensions: ['js', 'ts'],
|
|
setupFiles: ['<rootDir>/__tests__/jest.setup.mjs'],
|
|
testEnvironment: 'node',
|
|
testMatch: ['**/*.test.ts'],
|
|
testRunner: 'jest-circus/runner',
|
|
transform: {
|
|
'^.+\\.ts$': [
|
|
'ts-jest',
|
|
{
|
|
tsconfig: {
|
|
module: 'ES2022',
|
|
target: 'ES2022'
|
|
},
|
|
useESM: true
|
|
}
|
|
]
|
|
},
|
|
verbose: true
|
|
};
|