15 lines
372 B
JavaScript
15 lines
372 B
JavaScript
module.exports = {
|
|
preset: "ts-jest",
|
|
rootDir: "./",
|
|
displayName: "react-table",
|
|
testPathIgnorePatterns: ["<rootDir>/node_modules/", "<rootDir>/dist/"],
|
|
testEnvironment: "jsdom",
|
|
transform: {
|
|
"^.+\\.tsx?$": [
|
|
"ts-jest",
|
|
{
|
|
tsconfig: "<rootDir>/tsconfig.test.json",
|
|
},
|
|
],
|
|
},
|
|
};
|