initial commit & scaffold

This commit is contained in:
Elijah Duffy
2025-12-24 16:59:16 -08:00
commit 7375b4d96f
16 changed files with 167 additions and 0 deletions

15
tsconfig.base.json Normal file
View File

@@ -0,0 +1,15 @@
{
"compilerOptions": {
"target": "ES2021",
"module": "ES2020",
"moduleResolution": "node",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true
}
}