initial commit

This commit is contained in:
2026-05-11 17:20:02 -04:00
commit 9956b65e17
9 changed files with 5199 additions and 0 deletions

15
tsconfig.json Normal file
View File

@@ -0,0 +1,15 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"noEmit": true,
"allowImportingTsExtensions": true
},
"include": ["index.ts", "test/**/*.ts"],
"exclude": []
}