From 898bcf73d55b254fdcd71cdcf5cac6d81a5c97d8 Mon Sep 17 00:00:00 2001 From: barkure <43804451+barkure@users.noreply.github.com> Date: Thu, 23 Jul 2026 11:14:56 +0800 Subject: [PATCH] web: restore Vite client declarations for both dashboards (#5415) The 2024 bundler-mode migration changed the dashboard tsconfig include lists to src/**, leaving the root env.d.ts files outside the TypeScript programs. Move the Vite client declarations into src/ for both the frpc and frps dashboards so they are part of the programs again. Drop the *.vue wildcard module shim: the current vue-tsc toolchain resolves SFC types without it, and the shim would only mask real component prop types under plain tsc. --- web/frpc/{ => src}/env.d.ts | 0 web/frps/{ => src}/env.d.ts | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename web/frpc/{ => src}/env.d.ts (100%) rename web/frps/{ => src}/env.d.ts (100%) diff --git a/web/frpc/env.d.ts b/web/frpc/src/env.d.ts similarity index 100% rename from web/frpc/env.d.ts rename to web/frpc/src/env.d.ts diff --git a/web/frps/env.d.ts b/web/frps/src/env.d.ts similarity index 100% rename from web/frps/env.d.ts rename to web/frps/src/env.d.ts