From b70ae7d679823b298dc2ff3c6f46a6bc0894e1cc Mon Sep 17 00:00:00 2001 From: Yusuke Wada Date: Thu, 14 Dec 2023 18:12:38 +0900 Subject: [PATCH] chore(`tsconfig.json`): use `vitest/globals` for types (#1819) --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index c686743c..114bad48 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -11,8 +11,8 @@ "noUnusedLocals": false, "noUnusedParameters": false, "types": [ - "jest", - "node" + "node", + "vitest/globals" ], "jsx": "react", "jsxFactory": "jsx",