From 1755cedd88ad77d198db7f5abd5aca69c8523252 Mon Sep 17 00:00:00 2001 From: "gandalf-the-greybeard[bot]" <266323920+gandalf-the-greybeard[bot]@users.noreply.github.com> Date: Thu, 12 Mar 2026 13:53:24 +0000 Subject: [PATCH] fix: remove unused type references from tsconfig.json (#37) These type references were causing tsc to fail because neither vite nor vite-plugin-svgr is installed as a dependency. The codebase does not use any Vite-specific APIs or SVG imports, so the references are unnecessary. Fixes #36 Co-authored-by: gandalf-the-greybeard[bot] Co-authored-by: Claude Opus 4.6 --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 2eb0176..6601104 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,7 @@ { "extends": "@kinvolk/headlamp-plugin/config/plugins-tsconfig.json", "compilerOptions": { - "types": ["vite/client", "vite-plugin-svgr/client", "vitest/globals", "@testing-library/jest-dom"] + "types": ["vitest/globals", "@testing-library/jest-dom"] }, "include": ["src"] }