From cb431b343028c35e64bf8d3a99fd26d852cb1fe0 Mon Sep 17 00:00:00 2001 From: Westbrook Johnson Date: Wed, 20 Mar 2024 11:45:41 -0400 Subject: [PATCH] test: use TS config to enforce es module output --- test/tsconfig-node.json | 1 + 1 file changed, 1 insertion(+) diff --git a/test/tsconfig-node.json b/test/tsconfig-node.json index 9c631f1372..fa197f86cb 100644 --- a/test/tsconfig-node.json +++ b/test/tsconfig-node.json @@ -1,6 +1,7 @@ { "extends": "./tsconfig.json", "compilerOptions": { + "module": "esnext", "outDir": ".", "rootDir": ".", "types": ["node"],