initial commit

This commit is contained in:
Roman Siverov 2026-06-04 14:11:13 +03:00
commit 5e5aff990d
16 changed files with 1737 additions and 0 deletions

13
tsconfig.json Normal file
View file

@ -0,0 +1,13 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"outDir": "dist",
"rootDir": "src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true
},
"include": ["src"]
}