From 7389289b818b384b3bdf3ef9122d9b0e56608077 Mon Sep 17 00:00:00 2001 From: Thomas Ruoff Date: Thu, 8 Sep 2022 23:26:14 +0200 Subject: [PATCH] add moduleResolution to tsconfig to fix local tsserver --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index b9cc80c..1563f3e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,6 +10,7 @@ "incremental": true, "esModuleInterop": true, "module": "esnext", + "moduleResolution": "node", "resolveJsonModule": true, "isolatedModules": true, "jsx": "preserve"