Skip to content

Commit b50c9ac

Browse files
wip
1 parent 6b9ef49 commit b50c9ac

File tree

4 files changed

+7825
-2031
lines changed

4 files changed

+7825
-2031
lines changed

server/jest.config.ts

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import type { InitialOptionsTsJest } from 'ts-jest';
2+
3+
const configuration: InitialOptionsTsJest = {
4+
extensionsToTreatAsEsm: ['.ts', '.mts'],
5+
resolver: '<rootDir>/mjs-resolver.ts',
6+
transform: {
7+
'^.+\\.m?tsx?$': [
8+
'ts-jest',
9+
{
10+
useESM: true,
11+
},
12+
],
13+
},
14+
};
15+
16+
export default configuration;

0 commit comments

Comments
 (0)