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