Initial commit
All checks were successful
NPM Audit Check / Check NPM audit (push) Successful in -2m18s

This commit is contained in:
2025-08-22 01:04:31 -05:00
commit 4a260f112f
12 changed files with 514 additions and 0 deletions

17
tsconfig.json Normal file
View File

@@ -0,0 +1,17 @@
{
"compilerOptions": {
"lib": ["ESNext"],
"module": "NodeNext",
"target": "ESNext",
"esModuleInterop": true,
"skipLibCheck": true,
"moduleResolution": "node16",
"sourceMap": true,
"inlineSources": true,
"rootDir": "./src",
"outDir": "./distribution"
},
"include": ["src/**/*"],
"exclude": ["**/*.spec.ts"]
}