Skip to content

Commit

Permalink
fix(jsconfig): use node16 modules (#148)
Browse files Browse the repository at this point in the history
* fix(jsconfig): use `node16` modules

* Add missing comma
  • Loading branch information
wolfy1339 authored Apr 9, 2024
1 parent 1af1f2d commit 79beabe
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions jsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"compilerOptions": {
// highlight JS errors in editors for this project
"checkJs": true,
"module": "es2020",
"target": "es2020"
"module": "node16",
"target": "es2020",
"moduleResolution": "node16"
}
}

0 comments on commit 79beabe

Please sign in to comment.