chore: initial-commit (#1)
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>
This commit was merged in pull request #1.
This commit is contained in:
2025-08-17 22:52:19 +02:00
committed by t.behrendt
parent 4eefc46a2f
commit 370fbd39a3
16 changed files with 6808 additions and 1 deletions

10
jest.config.js Normal file
View File

@@ -0,0 +1,10 @@
module.exports = {
preset: "ts-jest",
testEnvironment: "node",
roots: ["<rootDir>/src"],
testMatch: ["**/*.spec.ts"],
transform: {
"^.+\\.ts$": "ts-jest",
},
moduleFileExtensions: ["ts", "js", "json"],
};