mirror of
https://github.com/github/codeql-action.git
synced 2026-01-01 20:20:07 +08:00
Co-authored-by: Andrew Eisenberg <aeisenberg@github.com> Co-authored-by: Henry Mercer <henrymercer@github.com>
16 lines
317 B
JavaScript
16 lines
317 B
JavaScript
module.exports = {
|
|
clearMocks: true,
|
|
globals: {
|
|
'ts-jest': {
|
|
tsconfig: 'tsconfig.json',
|
|
},
|
|
},
|
|
moduleFileExtensions: ['ts', 'tsx', 'js'],
|
|
testEnvironment: 'node',
|
|
testMatch: ['<rootDir>/src/**/*-tests.+(ts|tsx|js)'],
|
|
transform: {
|
|
'^.+\\.(ts|tsx)$': 'ts-jest',
|
|
},
|
|
watchman: true,
|
|
};
|