Skip to content

Commit

Permalink
fix(ignore): Update tsconfig for Node 18
Browse files Browse the repository at this point in the history
  • Loading branch information
Koenkk committed Dec 27, 2023
1 parent 085b46c commit 084b048
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
{
"compilerOptions": {
"module": "commonjs",
"allowSyntheticDefaultImports": true,
"module": "ES2022",
"esModuleInterop": true,
"target": "es2018",
"lib": ["es2018"],
"target": "ES2022",
"lib": ["ES2022"],
"noImplicitAny": true,
"noImplicitThis": true,
"moduleResolution": "node",
Expand Down

0 comments on commit 084b048

Please sign in to comment.