From 3f8cc5d4e757cfb93e622b3623a4ba58a87be151 Mon Sep 17 00:00:00 2001 From: haricnugraha Date: Mon, 7 Oct 2024 10:42:57 +0700 Subject: [PATCH] ci: fix fail to build docker --- tsconfig.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 61375d3b4..ef00f20e2 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,7 @@ { "compilerOptions": { "target": "ES2020", - "module": "CommonJS", + "module": "Node16", "outDir": "./lib", "rootDir": "./src", "strict": true, @@ -13,7 +13,8 @@ "baseUrl": ".", "typeRoots": ["node_modules/@types", "custom_types"], "lib": ["ES2021.String"], - "composite": true + "composite": true, + "moduleResolution": "node16" }, "include": [ "src/**/*",