From 6bb5c8a86091a1ac95effde1b14fed3027adad4a Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Sat, 16 May 2026 10:01:32 +0200 Subject: [PATCH] fix(tsconfig): drop preserveSymlinks so vue types resolve under pnpm pnpm resolves every package via a symlink into .pnpm/; preserveSymlinks pinned resolution to those symlink paths, blocking the vue -> @vue/runtime-dom -> @vue/runtime-core re-export chain and surfacing "has no exported member" errors for Ref, toValue, computed, etc. --- tsconfig.json | 1 - 1 file changed, 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 83fc15b..a0b97d4 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -15,7 +15,6 @@ "paths": { "@/*": ["./src/*"] }, - "preserveSymlinks": true, "lib": ["esnext", "dom", "dom.iterable", "scripthost", "ES2015"] }, "include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue"],