chore: 初始環境

This commit is contained in:
2025-01-27 16:13:44 +08:00
commit 3ff5cbc14c
5 changed files with 846 additions and 0 deletions

15
tsconfig.json Normal file
View File

@@ -0,0 +1,15 @@
{
"extends": ["@tsconfig/node18"],
"compilerOptions": {
"sourceMap": true,
"noUnusedLocals": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"resolveJsonModule": true,
"outDir": "dist",
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true
},
"exclude": ["node_modules", "public/**/*"]
}