From fa5426658811f9fe116861e7e6b39b91c7e2bc3a Mon Sep 17 00:00:00 2001 From: btea <2356281422@qq.com> Date: Fri, 11 Feb 2022 03:42:49 -0600 Subject: [PATCH] fix(play): fix tsconfig types path (#5965) --- play/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/play/tsconfig.json b/play/tsconfig.json index e895885c6e..8bd0c6bf0b 100644 --- a/play/tsconfig.json +++ b/play/tsconfig.json @@ -4,7 +4,7 @@ "allowJs": true, "module": "ESNext", "lib": ["ESNext", "DOM"], - "types": ["vite/client", "../global"], + "types": ["vite/client", "./global"], "resolveJsonModule": true, "moduleResolution": "Node", "allowSyntheticDefaultImports": true,