mirror of
https://github.com/LukeHagar/vercel.git
synced 2025-12-08 04:22:09 +00:00
Co-authored-by: Nathan Rajlich <n@n8.io> Co-authored-by: Swarnava Sengupta <swarnavasengupta@gmail.com>
15 lines
277 B
JavaScript
15 lines
277 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,
|
|
},
|
|
],
|
|
},
|
|
};
|