Skip to content

Commit

Permalink
Use ES2023 target for TypeScript (#581)
Browse files Browse the repository at this point in the history
  • Loading branch information
bmish authored Dec 7, 2024
1 parent 66b4015 commit 05c3cb0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@
"declaration": true,
"experimentalDecorators": true,
"lib": [
"ES2020"
"ES2023"
],
"module": "ES2020",
"module": "ES2022",
"moduleResolution": "node",
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "dist",
"target": "es2020",
"target": "es2023",
"types": [
"node",
"jest"
Expand Down

0 comments on commit 05c3cb0

Please sign in to comment.