mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-24 05:05:20 -04:00
19 lines
480 B
JavaScript
19 lines
480 B
JavaScript
/** @type {import('ts-jest').JestConfigWithTsJest} */
|
|
export default {
|
|
testEnvironment: "node",
|
|
testMatch: ["<rootDir>/test/**/*.test.ts"],
|
|
transform: {
|
|
"^.+\\.tsx?$": [
|
|
"ts-jest",
|
|
{
|
|
tsconfig: "<rootDir>/test/tsconfig.json",
|
|
useESM: true
|
|
},
|
|
],
|
|
},
|
|
extensionsToTreatAsEsm: ['.ts'],
|
|
moduleNameMapper: {
|
|
"^#self/(.*)$": "<rootDir>/src/$1",
|
|
},
|
|
};
|