blob: b6c259304707f61f8a3b04ee9a54a7f173ea8a3a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
module.exports = {
roots: ["<rootDir>"],
transform: {
"^.+\\.tsx?$": "ts-jest",
},
moduleFileExtensions: ["ts", "tsx", "js", "jsx", "json", "node"],
modulePathIgnorePatterns: [
"<rootDir>/test/__fixtures__",
"<rootDir>/node_modules",
"<rootDir>/dist",
],
preset: "ts-jest",
};
|