From 251bb9b532f585db0a249b0c0745a2228b64134e Mon Sep 17 00:00:00 2001 From: Jake Bailey <5341706+jakebailey@users.noreply.github.com> Date: Mon, 13 Jan 2025 10:20:13 -0800 Subject: [PATCH] Set Node 18 back to ES2022 lib (#343) --- Node-Target-Mapping.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Node-Target-Mapping.md b/Node-Target-Mapping.md index fea0b1d0..4b4e509f 100644 --- a/Node-Target-Mapping.md +++ b/Node-Target-Mapping.md @@ -24,15 +24,13 @@ To update this file, you can use [node.green](https://node.green) to map to the ```json { "compilerOptions": { - "lib": ["ES2023"], + "lib": ["ES2022"], "module": "node16", "target": "ES2022" } } ``` -Note: All versions of Node 18 support all ES2023 runtime features, so `lib` can be safely set to `ES2023`. - #### Node 16 ```json