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