Initial commit

This commit is contained in:
Carlos
2025-02-20 19:38:30 -05:00
parent 4be09d1c91
commit 4822e4502d
7 changed files with 4898 additions and 0 deletions

12
tsconfig.json Normal file
View File

@@ -0,0 +1,12 @@
{
"compilerOptions": {
"outDir": "./dist",
"module": "CommonJS",
"target": "ES2022",
"strict": true,
"declaration": true,
"sourceMap": true
},
"include": ["src"],
"exclude": ["node_modules", "dist"]
}