Skip to content

Commit

Permalink
Use ES2023 target for TypeScript (#712)
Browse files Browse the repository at this point in the history
  • Loading branch information
bmish authored Dec 5, 2024
1 parent 5a74c8a commit c7e3462
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": [
"es2021"
"es2023"
],
"module": "ES2020",
"module": "ES2022",
"moduleResolution": "node",
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "dist",
"target": "es2021",
"target": "es2023",
"types": [
"node",
"@types/jest"
Expand Down

0 comments on commit c7e3462

Please sign in to comment.