初始化

This commit is contained in:
2026-04-29 10:20:59 +08:00
commit 2759560936
55 changed files with 7684 additions and 0 deletions

19
tsconfig.json Normal file
View File

@@ -0,0 +1,19 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "commonjs",
"moduleResolution": "node",
"rootDir": "src",
"outDir": "dist",
"allowJs": true,
"esModuleInterop": true,
"strict": false,
"skipLibCheck": true
},
"include": [
"src/**/*"
],
"exclude": [
"dist"
]
}