9 lines
190 B
JavaScript
9 lines
190 B
JavaScript
/** @type {import('ts-jest').JestConfigWithTsJest} **/
|
|
module.exports = {
|
|
testEnvironment: "node",
|
|
testMatch: [ "**/*.test.ts" ],
|
|
transform: {
|
|
"^.+.tsx?$": ["ts-jest",{}],
|
|
},
|
|
};
|