Skip to content

Commit

Permalink
Change module to node16 where appropriate
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewbranch committed Dec 7, 2023
1 parent b0d8a82 commit 7003bce
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Node-Target-Mapping.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ To update this file, you can use [node.green](https://node.green) to map to the
{
"compilerOptions": {
"lib": ["ES2023"],
"module": "commonjs",
"module": "node16",
"target": "ES2022"
}
}
Expand All @@ -25,7 +25,7 @@ To update this file, you can use [node.green](https://node.green) to map to the
{
"compilerOptions": {
"lib": ["ES2022"],
"module": "commonjs",
"module": "node16",
"target": "ES2022"
}
}
Expand All @@ -37,7 +37,7 @@ To update this file, you can use [node.green](https://node.green) to map to the
{
"compilerOptions": {
"lib": ["ES2021"],
"module": "commonjs",
"module": "node16",
"target": "ES2021"
}
}
Expand All @@ -51,7 +51,7 @@ Note: Due to a V8 bug, one rarely-used ES2020 feature was incorrectly implemente
{
"compilerOptions": {
"lib": ["ES2020"],
"module": "commonjs",
"module": "node16",
"target": "ES2020"
}
}
Expand All @@ -65,7 +65,7 @@ Note: Due to a V8 bug, one rarely-used ES2020 feature was incorrectly implemente
{
"compilerOptions": {
"lib": ["ES2019"],
"module": "commonjs",
"module": "node16",
"target": "ES2019"
}
}
Expand Down

0 comments on commit 7003bce

Please sign in to comment.