Intial Commit

This commit is contained in:
2025-10-25 17:31:21 -04:00
parent 8d0e506b18
commit 39e49739c9
13 changed files with 3567 additions and 0 deletions

17
tsconfig.json Normal file
View File

@@ -0,0 +1,17 @@
{
"compilerOptions": {
"target": "ES2021",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"outDir": "dist",
"rootDir": "src",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"sourceMap": true,
"allowImportingTsExtensions": false
},
"include": ["src/**/*"]
}