mirror of
https://github.com/danswer-ai/danswer.git
synced 2025-03-17 21:32:36 +01:00
12 lines
244 B
JavaScript
12 lines
244 B
JavaScript
|
module.exports = {
|
||
|
preset: "ts-jest",
|
||
|
testEnvironment: "node",
|
||
|
moduleNameMapper: {
|
||
|
"^@/(.*)$": "<rootDir>/src/$1",
|
||
|
},
|
||
|
testPathIgnorePatterns: ["/node_modules/", "/tests/e2e/"],
|
||
|
transform: {
|
||
|
"^.+\\.tsx?$": "ts-jest",
|
||
|
},
|
||
|
};
|