init: 个人简历项目文件

This commit is contained in:
2026-05-16 23:27:09 +08:00
commit 90b2c049ce
124 changed files with 23324 additions and 0 deletions
@@ -0,0 +1,24 @@
{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.server.tsbuildinfo",
"target": "ES2022",
"lib": ["ES2022"],
"module": "ESNext",
"types": ["node"],
"skipLibCheck": true,
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"moduleDetection": "force",
"noEmit": true,
"strict": true,
"esModuleInterop": true,
"noFallthroughCasesInSwitch": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"@contracts/*": ["./contracts/*"],
"@db/*": ["./db/*"]
}
},
"include": ["api", "contracts", "db"]
}