Initial Commit

This commit is contained in:
2025-06-27 22:45:20 -05:00
parent f35b07ecca
commit 6a5c84b609
9 changed files with 5884 additions and 2 deletions

17
tsconfig.json Normal file
View File

@@ -0,0 +1,17 @@
{
"compilerOptions": {
/* ---- target & module ---- */
"target": "ES2020",
"module": "commonjs",
"moduleResolution": "node",
/* ---- quality-of-life ---- */
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
/* ---- output dir ---- */
"outDir": "dist"
},
"include": ["src/**/*"]
}