First update.

This commit is contained in:
2025-10-11 14:45:08 +08:00
commit 6aa8fb818a
22 changed files with 4036 additions and 0 deletions

10
tsconfig.json Normal file
View File

@@ -0,0 +1,10 @@
{
"compilerOptions": {
"target": "ES2015", // 或 ES2020、ESNext 都可以
"module": "commonjs", // 根据你的 Node.js 版本和需求设置
"strict": true, // 可选但推荐
"esModuleInterop": true, // 可选
"downlevelIteration": true // 如果仍用 ES5 作为 target 就加这个
}
}