15 lines
288 B
JavaScript
15 lines
288 B
JavaScript
/** @type {import('ts-jest').JestConfigWithTsJest} */
|
|
module.exports = {
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'node',
|
|
transform: {
|
|
'.': [
|
|
'ts-jest',
|
|
{
|
|
tsconfig: 'tsconfig.jest.json'
|
|
}
|
|
]
|
|
},
|
|
globalSetup: './jest.setup.ts',
|
|
testTimeout: 10000,
|
|
}; |