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