feat(web): init project scaffold with package.json and tsconfig

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
2026-05-07 02:16:46 +08:00
parent e848f32a11
commit 380df630ec
5 changed files with 5087 additions and 0 deletions

9
web/server/tsconfig.json Normal file
View File

@@ -0,0 +1,9 @@
{
"extends": "../tsconfig.base.json",
"compilerOptions": {
"module": "ESNext",
"outDir": "./dist",
"rootDir": "."
},
"include": ["./**/*.ts"]
}