From c302fa597781c05fd793af1fa5bac21d0af10a6b Mon Sep 17 00:00:00 2001 From: Nathan Shively-Sanders <293473+sandersn@users.noreply.github.com> Date: Fri, 15 Jul 2022 08:43:38 -0700 Subject: [PATCH 1/2] vue.d.ts: Relativise to v3-component-public-instance --- types/vue.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/vue.d.ts b/types/vue.d.ts index ed5b1817453..aaf471dd2c1 100644 --- a/types/vue.d.ts +++ b/types/vue.d.ts @@ -14,7 +14,7 @@ import { VNode, VNodeData, VNodeChildren, NormalizedScopedSlot } from './vnode' import { PluginFunction, PluginObject } from './plugin' import { DefineComponent } from './v3-define-component' import { nextTick } from './v3-generated' -import { ComponentPublicInstance } from 'v3-component-public-instance' +import { ComponentPublicInstance } from './v3-component-public-instance' export interface CreateElement { ( From 3339f707c5702a9f6b907916b731f47640559124 Mon Sep 17 00:00:00 2001 From: Nathan Shively-Sanders <293473+sandersn@users.noreply.github.com> Date: Fri, 15 Jul 2022 09:41:36 -0700 Subject: [PATCH 2/2] fix(types): remove baseUrl from types tsconfig --- types/tsconfig.json | 1 - 1 file changed, 1 deletion(-) diff --git a/types/tsconfig.json b/types/tsconfig.json index 07fef18f7ff..36c5afee057 100644 --- a/types/tsconfig.json +++ b/types/tsconfig.json @@ -9,7 +9,6 @@ "jsx": "preserve", "strict": true, "noEmit": true, - "baseUrl": ".", "paths": { "vue": ["../index.d.ts"] }