/** @type {import('ts-jest/dist/types').JestConfigWithTsJest} */
module.exports = {
preset: "ts-jest",
testEnvironment: "node",
transform: {
"^.+\\.ts?$": [
"ts-jest",
{
tsconfig: "tsconfig.test.json",
},
],
},
testPathIgnorePatterns: ["/node_modules/", "/dist/"],
};