From bc99b03a480f488e4e4ab09798ec8684fa44d107 Mon Sep 17 00:00:00 2001 From: mxyhi Date: Wed, 9 Oct 2024 13:50:33 +0800 Subject: [PATCH] Update tsconfig.json add "types": ["@farmfe/core/client"] --- examples/vue/tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/vue/tsconfig.json b/examples/vue/tsconfig.json index 17ba6bd83..46f8264cc 100644 --- a/examples/vue/tsconfig.json +++ b/examples/vue/tsconfig.json @@ -11,7 +11,8 @@ "esModuleInterop": true, "lib": ["ESNext", "DOM"], "skipLibCheck": true, - "noEmit": true + "noEmit": true, + "types": ["@farmfe/core/client"] }, "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.vue", "farm.config.ts"] }