feat: add basic error factory

This commit is contained in:
Leonard Kinday 2026-05-17 17:50:27 +02:00
parent ce239dd724
commit a8ac9d5638
Signed by: kinday
SSH key fingerprint: SHA256:oFBH7NZvG8XTgZ8aEmSUIQFAkuvBP5GKtHj/RvbWHRg
7 changed files with 1128 additions and 0 deletions

9
tsconfig.json Normal file
View file

@ -0,0 +1,9 @@
{
"extends": "@tsconfig/node-lts",
"compilerOptions": {
"declaration": true,
"outDir": "lib",
"rootDir": "src"
},
"files": ["src/index.ts"]
}