added repo

This commit is contained in:
2026-03-03 14:25:43 +00:00
commit 4328ada595
15 changed files with 2118 additions and 0 deletions

13
tsconfig.json Normal file
View File

@@ -0,0 +1,13 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"strict": true,
"allowJs": false,
"noEmit": true,
"types": ["bun"],
"skipLibCheck": true
},
"include": ["src/**/*.ts", "scripts/**/*.ts", "tests/**/*.ts"]
}