All checks were successful
CD / Release (push) Successful in 39s
Reviewed-on: #1 Co-authored-by: Timo Behrendt <t.behrendt@t00n.de> Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
11 lines
223 B
JavaScript
11 lines
223 B
JavaScript
module.exports = {
|
|
preset: "ts-jest",
|
|
testEnvironment: "node",
|
|
roots: ["<rootDir>/src"],
|
|
testMatch: ["**/*.spec.ts"],
|
|
transform: {
|
|
"^.+\\.ts$": "ts-jest",
|
|
},
|
|
moduleFileExtensions: ["ts", "js", "json"],
|
|
};
|