OpenPanel/packages/devtools-shared/jest.config.js
Stefan Pejcic 8595a9f4e5 back
2024-05-08 19:58:53 +02:00

16 lines
376 B
JavaScript

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