Skip to content

Commit

Permalink
build: update transpilation target to ES2016
Browse files Browse the repository at this point in the history
  • Loading branch information
LiosK committed Jun 21, 2023
1 parent 50cd6ab commit f6c9171
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ a case-insensitive scheme. Other changes include the removal of deprecated APIs.
### Changed

- Letter case of generated IDs from uppercase to lowercase
- TypeScript transpilation target from ES2015 to ES2016

## v2.5.0 - 2023-06-21

Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"compilerOptions": {
"target": "es2015",
"lib": ["dom", "es2015", "es2020.bigint"],
"target": "es2016",
"lib": ["dom", "es2016", "es2020.bigint"],
"module": "node16",
"moduleResolution": "node16",
"typeRoots": [],
Expand Down

0 comments on commit f6c9171

Please sign in to comment.