Skip to content

Commit

Permalink
chore(ts): use lowercase system version
Browse files Browse the repository at this point in the history
Using the uppercase syntax makes swc fail: swc-project/swc#8516
  • Loading branch information
adriencaccia committed Jan 29, 2024
1 parent 09b1dec commit 1454761
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"compilerOptions": {
"composite": true,
"moduleResolution": "node",
"target": "ESNext",
"module": "ESNext",
"target": "esnext",
"module": "esnext",
"lib": ["esnext"],
"types": ["node"],
"strict": true,
Expand Down

0 comments on commit 1454761

Please sign in to comment.