mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-23 04:34:15 -04:00
17 lines
396 B
JavaScript
17 lines
396 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",
|
|
},
|
|
],
|
|
},
|
|
moduleNameMapper: {
|
|
"^#self/(.*)$": "<rootDir>/src/$1",
|
|
},
|
|
};
|