Co-authored-by: Rares Stefan <948623+StephixOne@users.noreply.github.com> Co-authored-by: Oli Juhl <59018053+olivermrbl@users.noreply.github.com>
14 lines
248 B
JavaScript
14 lines
248 B
JavaScript
module.exports = {
|
|
globals: {
|
|
"ts-jest": {
|
|
tsConfig: "tsconfig.spec.json",
|
|
isolatedModules: false,
|
|
},
|
|
},
|
|
transform: {
|
|
"^.+\\.[jt]s?$": "ts-jest",
|
|
},
|
|
testEnvironment: `node`,
|
|
moduleFileExtensions: [`js`, `ts`],
|
|
}
|