|
1
|
module.exports = { |
|
2
|
roots: ["<rootDir>/src"], |
|
3
|
transform: { |
|
4
|
"^.+\\.tsx?$": "ts-jest" |
|
5
|
}, |
|
6
|
testRegex: "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$", |
|
7
|
moduleFileExtensions: ["ts", "tsx", "js", "jsx", "json", "node"], |
|
8
|
snapshotSerializers: ["enzyme-to-json/serializer"] |
|
9
|
} |