feat: scaffold ant design mobile frontend

- Vite + React 18 + TypeScript + React Router v6 + Ant Design Mobile
- /v1 proxy to http://127.0.0.1:3201 in vite.config.ts
- Placeholder routes for / and /login
- Build verified passing

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
jesxion
2026-04-24 16:38:00 +08:00
parent 0a8e42c673
commit c5508a1927
11 changed files with 2363 additions and 0 deletions

20
h5-app/tsconfig.json Normal file
View File

@@ -0,0 +1,20 @@
{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
},
"include": ["src"]
}