blob: 5df035f33b2ecedf52232dafc40e4786e3fcda63 (
plain) (
tree)
|
|
/**
* @type {jest.ProjectConfig}
*/
module.exports = {
roots: ["<rootDir>/test"],
transform: {
"^.+\\.tsx?$": "ts-jest",
},
moduleFileExtensions: ["ts", "tsx", "js", "jsx", "json", "node"],
globals: {
"ts-jest": {
tsconfig: "tsconfig.test.json",
},
},
};
|