init:init to origin

This commit is contained in:
2025-11-01 10:57:15 +08:00
parent f15daefed9
commit 6facd5f6cc
9 changed files with 141 additions and 0 deletions

16
tsconfig.json Normal file
View File

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