Basic Structure

This commit is contained in:
2025-08-24 15:16:02 -05:00
parent 797fb638f4
commit 9a176a7735
11 changed files with 139 additions and 8 deletions

14
tsconfig.json Normal file
View File

@@ -0,0 +1,14 @@
{
"compilerOptions": {
"target": "ES2020",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"rootDir": "./src",
"outDir": "./dist",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"sourceMap": true
}
}