1
- const path = require ( ' path') ;
2
- const { pathsToModuleNameMapper } = require ( 'ts-jest' ) ;
3
- const { compilerOptions } = require ( './tsconfig' ) ;
1
+ import path from 'node: path';
2
+ import url from 'node:url' ;
3
+ import tsconfigJSON from './tsconfig.json' assert { type : " json " } ;
4
4
5
- const moduleNameMapper = pathsToModuleNameMapper ( compilerOptions . paths , {
6
- prefix : '<rootDir>/src/' ,
7
- } ) ;
5
+ const projectPath = path . dirname ( url . fileURLToPath ( import . meta. url ) ) ;
8
6
9
7
// Global variables that are shared across the jest worker pool
10
8
// These variables must be static and serializable
11
9
const globals = {
12
10
// Absolute directory to the project root
13
- projectDir : __dirname ,
11
+ projectDir : projectPath ,
14
12
// Absolute directory to the test root
15
- testDir : path . join ( __dirname , 'tests' ) ,
13
+ testDir : path . join ( projectPath , 'tests' ) ,
16
14
// Default asynchronous test timeout
17
15
defaultTimeout : 20000 ,
18
16
// Timeouts rely on setTimeout which takes 32 bit numbers
@@ -24,7 +22,7 @@ const globals = {
24
22
// They can however receive the process environment
25
23
// Use `process.env` to set variables
26
24
27
- module . exports = {
25
+ const config = {
28
26
testEnvironment : 'node' ,
29
27
verbose : true ,
30
28
collectCoverage : false ,
@@ -40,10 +38,10 @@ module.exports = {
40
38
parser : {
41
39
syntax : "typescript" ,
42
40
tsx : true ,
43
- decorators : compilerOptions . experimentalDecorators ,
41
+ decorators : tsconfigJSON . compilerOptions . experimentalDecorators ,
44
42
dynamicImport : true ,
45
43
} ,
46
- target : compilerOptions . target . toLowerCase ( ) ,
44
+ target : tsconfigJSON . compilerOptions . target . toLowerCase ( ) ,
47
45
keepClassNames : true ,
48
46
} ,
49
47
}
@@ -77,5 +75,10 @@ module.exports = {
77
75
'jest-extended/all' ,
78
76
'<rootDir>/tests/setupAfterEnv.ts'
79
77
] ,
80
- moduleNameMapper : moduleNameMapper ,
78
+ moduleNameMapper : {
79
+ "^(\\.{1,2}/.*)\\.js$" : "$1" ,
80
+ } ,
81
+ extensionsToTreatAsEsm : [ '.ts' , '.tsx' , '.mts' ] ,
81
82
} ;
83
+
84
+ export default config ;
0 commit comments