feature: First build

This commit is contained in:
Keith Solomon
2026-01-26 08:24:46 -06:00
parent 27511d8ec0
commit d6df4c18a2
6 changed files with 240 additions and 10 deletions

19
tsconfig.json Normal file
View File

@@ -0,0 +1,19 @@
{
"compilerOptions": {
"target": "ES2020",
"module": "CommonJS",
"lib": [
"ES2020"
],
"rootDir": "src",
"outDir": "out",
"sourceMap": true,
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true
},
"exclude": [
"node_modules",
".vscode-test"
]
}