From ae8df42a51bd15586bffe92d6311b2710146f3c3 Mon Sep 17 00:00:00 2001 From: Mohammed Keyvanzadeh Date: Sun, 16 Apr 2023 23:12:42 +0330 Subject: [PATCH] typings: fix syntax error in tsconfig Trailing commas are invalid in JSON files. PR-URL: https://github.com/nodejs/node/pull/47584 Reviewed-By: Yagiz Nizipli Reviewed-By: Moshe Atlow --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 5204d83c1e7..f42ed9ad0ea 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -94,7 +94,7 @@ "vm": ["./lib/vm.js"], "wasi": ["./lib/wasi.js"], "worker_threads": ["./lib/worker_threads.js"], - "zlib": ["./lib/zlib.js"], + "zlib": ["./lib/zlib.js"] } } }