From 10a57d3388660d479773bdd2d007e923a986d916 Mon Sep 17 00:00:00 2001 From: schroda <50052685+schroda@users.noreply.github.com> Date: Tue, 15 Aug 2023 22:10:14 +0200 Subject: [PATCH] Change "moduleResolution" to "node" "bundler" causes a tsc issue with the generated graphql file where the imported file can't be found. --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index d3a3900c..333123b0 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -19,7 +19,7 @@ /* Bundler mode */ "esModuleInterop": true, "allowSyntheticDefaultImports": true, - "moduleResolution": "bundler", + "moduleResolution": "node", "allowImportingTsExtensions": true, "resolveJsonModule": true, "isolatedModules": true,