From 815781fc55b12444cf74bf504c35faf9e7f1c336 Mon Sep 17 00:00:00 2001 From: Nick K Date: Tue, 24 Oct 2023 01:04:15 +0300 Subject: [PATCH] Change module option in tsconfig to node16 to satisfy ts complains --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index aa4fc11..948ef10 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,7 +10,7 @@ "compilerOptions": { "outDir": "lib", "target": "es2021", - "module": "es2020", + "module": "node16", "noImplicitAny": true, "baseUrl": "src", "checkJs": false,