initial commit

This commit is contained in:
2026-04-25 21:06:15 -04:00
commit 61bca87bba
12 changed files with 1738 additions and 0 deletions

14
tsconfig.json Normal file
View File

@@ -0,0 +1,14 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"noEmit": true,
"allowImportingTsExtensions": true
},
"include": ["cli.ts", "server.ts", "src/**/*.ts"]
}