From f53600cd86d0b01b3092d874db2d0e2f39d8f380 Mon Sep 17 00:00:00 2001 From: Sofia Leon Date: Fri, 7 Feb 2025 17:10:53 -0800 Subject: [PATCH] reattempt to lalow dynamic import --- gax/tsconfig.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gax/tsconfig.json b/gax/tsconfig.json index d100bcc08..3b87b26f9 100644 --- a/gax/tsconfig.json +++ b/gax/tsconfig.json @@ -2,10 +2,13 @@ "extends": "./node_modules/gts/tsconfig-google.json", "compilerOptions": { "lib": ["es2018", "dom"], + "module": "commonjs", + "target": "es2018", "rootDir": ".", "outDir": "build", "noImplicitAny": true, - "resolveJsonModule": true + "resolveJsonModule": true, + "moduleResolution": "node" }, "include": [ "src/*.ts",