Initial commit

This commit is contained in:
juluo
2025-10-08 14:48:45 +08:00
committed by GitHub
commit 8b93d6f42f
108 changed files with 27618 additions and 0 deletions

15
tsconfig.node.json Normal file
View File

@@ -0,0 +1,15 @@
{
"include": ["api", "script", "*.config.*"],
"compilerOptions": {
"moduleResolution": "nodenext",
"module": "nodenext",
"types": ["node"],
"lib": ["ESNext"],
"strict": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"isolatedModules": true,
"importHelpers": true
}
}