initial release build

This commit is contained in:
2026-04-21 19:19:56 +00:00
parent c3ded5a61f
commit 0d92b370f9
22 changed files with 6121 additions and 0 deletions

16
tsconfig.json Normal file
View File

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