13 lines
356 B
JSON
13 lines
356 B
JSON
{
|
|
"preset": "ts-jest/presets/default-esm",
|
|
"extensionsToTreatAsEsm": [".ts"],
|
|
"moduleNameMapper": {
|
|
"^(\\.{1,2}/.*)\\.js$": "$1"
|
|
},
|
|
"transform": {
|
|
"^.+\\.tsx?$": ["ts-jest", { "useESM": true }]
|
|
},
|
|
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
|
|
"moduleFileExtensions": ["ts", "tsx", "js", "jsx", "json", "node"]
|
|
}
|