From 03574940f26106cd6f9ec4c0f88d51244926fa95 Mon Sep 17 00:00:00 2001 From: Ryan Florence Date: Fri, 18 Mar 2022 09:35:06 -0600 Subject: [PATCH] fix: add vitest globals to typescript --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index 356d121a..3e3ff6f4 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,6 +3,7 @@ "include": ["remix.env.d.ts", "**/*.ts", "**/*.tsx"], "compilerOptions": { "lib": ["DOM", "DOM.Iterable", "ES2019"], + "types": ["vitest/globals"], "isolatedModules": true, "esModuleInterop": true, "jsx": "react-jsx",