Initial commit

This commit is contained in:
2025-07-17 21:44:36 -04:00
commit f6b95ab306
7 changed files with 2328 additions and 0 deletions

12
tsconfig.json Normal file
View File

@ -0,0 +1,12 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"outDir": "out",
"rootDir": "src",
"strict": true,
"esModuleInterop": true,
"moduleResolution": "node"
},
"include": ["src"]
}