mirror of
https://github.com/danswer-ai/danswer.git
synced 2025-03-17 21:32:36 +01:00
* Made copy button and cmd+c work for cmd+v and cmd+shift+v * made sub selections work as well * ok it works * fixed npm run build * im not from earth * added logging * more logging * bye logs * should work now * whoops * added stuff * made it robust * ctrl shift v behavior
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",
|
|
},
|
|
};
|