blob: 09173252eacb74bbc97ef89407c336b78e22cec1 [file] [log] [blame]
gio9b7421a2025-06-18 12:31:13 +00001/** @type {import('ts-jest').JestConfigWithTsJest} */
2export default {
3 preset: 'ts-jest/presets/default-esm',
4 testEnvironment: 'node',
5 moduleNameMapper: {
6 '^(\\.{1,2}/.*)\\.js$': '$1',
7 },
8 transform: {
9 '^.+\\.tsx?$': [
10 'ts-jest',
11 {
12 useESM: true,
13 },
14 ],
15 },
16 testMatch: [
17 "**/src/**/*.test.ts"
18 ]
19};