Skip to content

Commit

Permalink
chore(tsconfig): target node 20
Browse files Browse the repository at this point in the history
  • Loading branch information
marcalexiei committed Oct 29, 2024
1 parent 55abb4c commit 411c743
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/wicked-forks-relax.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'rollup-plugin-oxc-transform': patch
---

builld: target node 20
5 changes: 3 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
{
/** @see https://github.com/microsoft/TypeScript/wiki/Node-Target-Mapping */
"compilerOptions": {
"lib": ["ES2023"],
"module": "ESNext",
"moduleResolution": "Bundler",
"target": "ES6",
"lib": ["ES2015"],
"target": "ES2022",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
Expand Down

0 comments on commit 411c743

Please sign in to comment.