14 lines
307 B
JavaScript
14 lines
307 B
JavaScript
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",
|
|
};
|