From 20b36fc8a0027e7b41b56966fab356a707fbe8d0 Mon Sep 17 00:00:00 2001 From: Dan Lynch Date: Thu, 17 Sep 2026 02:25:17 +0000 Subject: [PATCH] fix(graphile-scoped-introspection): ESM tsconfig uses es2022/bundler like every other package --- graphile/graphile-scoped-introspection/tsconfig.esm.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/graphile/graphile-scoped-introspection/tsconfig.esm.json b/graphile/graphile-scoped-introspection/tsconfig.esm.json index f624f96708..d1eeea7f62 100644 --- a/graphile/graphile-scoped-introspection/tsconfig.esm.json +++ b/graphile/graphile-scoped-introspection/tsconfig.esm.json @@ -2,6 +2,7 @@ "extends": "./tsconfig.json", "compilerOptions": { "outDir": "dist/esm", - "module": "ESNext" + "module": "es2022", + "moduleResolution": "bundler" } }