summaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorMohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>2023-04-16 23:12:42 +0330
committerGitHub <noreply@github.com>2023-04-16 19:42:42 +0000
commitae8df42a51bd15586bffe92d6311b2710146f3c3 (patch)
tree270754993c5735c6a958f6330b6b1ca37934a3ed /tsconfig.json
parent4f5bb1a75aff50867e5525451eefe479d6fe1a84 (diff)
downloadnode-new-ae8df42a51bd15586bffe92d6311b2710146f3c3.tar.gz
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 <yagiz@nizipli.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/tsconfig.json b/tsconfig.json
index 5204d83c1e..f42ed9ad0e 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"]
}
}
}