initial commit

This commit is contained in:
PwLDev 2026-04-28 13:11:03 -07:00
commit 18255ce4cd
21 changed files with 1244 additions and 0 deletions

19
tsconfig.json Normal file
View file

@ -0,0 +1,19 @@
{
"compilerOptions": {
"rootDir": "./lib",
"outDir": "./dist",
"module": "es2020",
"target": "esnext",
"types": ["node"],
"allowJs": true,
"declaration": true,
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": true,
"noImplicitReturns": true,
"strict": true,
"verbatimModuleSyntax": true,
"noUncheckedSideEffectImports": true,
"skipLibCheck": true
},
"exclude": ["scripts"]
}