Skip to content

Commit e51988f

Browse files
chore: bump automation/utils tsconfig to ES2022
Array.prototype.at() requires ES2022 lib. @types/node@24 no longer implicitly provides it under ES2021 target.
1 parent 7ba7f1f commit e51988f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

automation/utils/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"include": ["./src", "./bin"],
33
"compilerOptions": {
4-
"lib": ["ES2021"],
4+
"lib": ["ES2022"],
55
"module": "CommonJS",
6-
"target": "ES2021",
6+
"target": "ES2022",
77
"types": ["node"],
88
"outDir": "./dist",
99
"strict": true,

0 commit comments

Comments
 (0)