chore: migrate jest config to esm

This commit is contained in:
Rodney, Tiara 2025-04-25 16:21:29 +02:00
parent 7a70ed28c3
commit 55229776c0
No known key found for this signature in database
GPG key ID: 5CD8EC1D46106723

13
jest.config.mjs Normal file
View file

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