chore: project scaffolding

This commit is contained in:
2026-05-20 17:21:54 +02:00
commit 9c2973faf5
9 changed files with 8266 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import type { Config } from 'jest';
const config: Config = {
preset: 'ts-jest',
testEnvironment: 'node',
testMatch: ['**/src/__tests__/**/*.test.ts'],
clearMocks: true,
};
export default config;