import {Config} from "jest";
// Sync object
const config: Config = {
verbose: true,
testMatch: ["**/test/**/*.ts"],
transform: {
"^.+\\.tsx?$": "ts-jest",
},
};
export default config;