esm-logging/jest.config.js
2025-04-25 16:17:46 +02:00

13 lines
291 B
JavaScript

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