initial commit

This commit is contained in:
2025-09-03 12:25:06 +00:00
parent f67abb34c7
commit 0dab520d45
17 changed files with 3834 additions and 0 deletions

16
tsconfig.json Normal file
View File

@@ -0,0 +1,16 @@
{
"compilerOptions": {
"allowJs": true,
"declaration": true,
"emitDeclarationOnly": true,
"outDir": "dist",
"moduleResolution": "node",
"target": "ESNext",
"module": "ESNext",
"strict": true,
"esModuleInterop": true
},
"include": [
"src"
]
}