From 92166a875499530c4e09ebc509c4757d39abaae2 Mon Sep 17 00:00:00 2001 From: estifanos Date: Wed, 5 Aug 2026 10:48:08 +0000 Subject: [PATCH] feat(tsconfig): add types option for Vite client in compilerOptions --- libs/ui/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ui/tsconfig.json b/libs/ui/tsconfig.json index 8c54e1fa5..c707bd830 100644 --- a/libs/ui/tsconfig.json +++ b/libs/ui/tsconfig.json @@ -1,5 +1,5 @@ { "extends": "../../tsconfig.base.json", - "compilerOptions": { "outDir": "../../dist/out-tsc" }, + "compilerOptions": { "outDir": "../../dist/out-tsc", "types": ["vite/client"] }, "include": ["src/**/*.ts", "src/**/*.tsx"] }