esm-logging/jest.config.mjs
2025-04-25 16:21:29 +02:00

13 lines
289 B
JavaScript

/** @type {import('ts-jest').JestConfigurationWithTsJest} **/
export default {
testEnvironment: "node",
transform: {
"^.+.tsx?$": [
"ts-jest",
{
tsconfig: 'tsconfig.debug.json'
}
]
},
roots: ['./tests']
}