feat: migrate to GramJS with TS

This commit is contained in:
你的用户名
2025-11-08 16:11:21 +08:00
parent e1885366f2
commit 313527aea3
24 changed files with 3434 additions and 591 deletions

19
tsconfig.json Normal file
View File

@@ -0,0 +1,19 @@
{
"compilerOptions": {
"target": "ES2021",
"module": "ES2022",
"moduleResolution": "node",
"lib": ["ES2021", "DOM"],
"outDir": "dist",
"rootDir": ".",
"strict": true,
"noImplicitOverride": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"types": ["node"]
},
"include": ["src", "tests", "vitest.config.ts"],
"exclude": ["dist", "node_modules"]
}