@saleae/react-contexify
Version:
Add contextmenu to your react component with ease
26 lines • 469 B
JavaScript
module.exports = {
verbose: true,
roots: [
"<rootDir>/src"
],
transform: {
"^.+\\.tsx?$": "ts-jest"
},
testRegex: "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
testPathIgnorePatterns: [
"<rootDir>/node_modules/",
"<rootDir>/src/__tests__/setupTests.ts"
],
moduleFileExtensions: [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
setupFiles: [
"raf/polyfill",
"<rootDir>/src/__tests__/setupTests.ts"
]
}