From f2fc615a18765746b3fd98e7d3b96d6a5846270f Mon Sep 17 00:00:00 2001
From: PatrykKuniczak
Date: Wed, 18 Dec 2024 12:10:44 +0100
Subject: [PATCH] fix: use all types from node_modules instead of picking types
manually for chrome-extension
---
chrome-extension/tsconfig.json | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/chrome-extension/tsconfig.json b/chrome-extension/tsconfig.json
index 327a6b36e..52c98adaf 100644
--- a/chrome-extension/tsconfig.json
+++ b/chrome-extension/tsconfig.json
@@ -4,8 +4,7 @@
"baseUrl": ".",
"paths": {
"@src/*": ["src/*"]
- },
- "types": ["node", "chrome"]
+ }
},
- "include": ["src", "utils", "vite.config.mts", "manifest.ts"]
+ "include": ["src", "utils", "vite.config.mts", "manifest.ts", "../node_modules/@types"]
}