mirror of
https://github.com/LukeHagar/vercel.git
synced 2025-12-07 12:57:47 +00:00
19 lines
438 B
JavaScript
19 lines
438 B
JavaScript
/** @type {import('@ts-jest/dist/types').InitialOptionsTsJest} */
|
|
module.exports = {
|
|
preset: 'ts-jest',
|
|
transform: {
|
|
'^.+\\.[tj]s$': [
|
|
'ts-jest',
|
|
{
|
|
diagnostics: true,
|
|
isolatedModules: true,
|
|
tsconfig: 'test/tsconfig.json',
|
|
},
|
|
],
|
|
},
|
|
setupFilesAfterEnv: ['@alex_neo/jest-expect-message'],
|
|
verbose: false,
|
|
testEnvironment: 'node',
|
|
testMatch: ['<rootDir>/test/**/*.test.ts'],
|
|
};
|