Update server dependencies.

This commit is contained in:
baldo 2022-09-14 15:56:16 +02:00
commit 894ee97fdf
3 changed files with 355 additions and 378 deletions

View file

@ -1,10 +1,13 @@
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
roots: ['<rootDir>/server'],
globals: {
'ts-jest': {
tsconfig: '<rootDir>/server/tsconfig.json'
}
}
preset: "ts-jest",
testEnvironment: "node",
roots: ["<rootDir>/server"],
transform: {
"^.+\\.tsx?$": [
"ts-jest",
{
tsconfig: "<rootDir>/server/tsconfig.json",
},
],
},
};