blob: 5df035f33b2ecedf52232dafc40e4786e3fcda63 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/**
* @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",
},
},
};
|