@@ -29,6 +29,7 @@ namespace ts {
29
29
[ "es2019" , "lib.es2019.d.ts" ] ,
30
30
[ "es2020" , "lib.es2020.d.ts" ] ,
31
31
[ "es2021" , "lib.es2021.d.ts" ] ,
32
+ [ "es2022" , "lib.es2022.d.ts" ] ,
32
33
[ "esnext" , "lib.esnext.d.ts" ] ,
33
34
// Host only
34
35
[ "dom" , "lib.dom.d.ts" ] ,
@@ -72,12 +73,16 @@ namespace ts {
72
73
[ "es2021.string" , "lib.es2021.string.d.ts" ] ,
73
74
[ "es2021.weakref" , "lib.es2021.weakref.d.ts" ] ,
74
75
[ "es2021.intl" , "lib.es2021.intl.d.ts" ] ,
75
- [ "esnext.array" , "lib.es2019.array.d.ts" ] ,
76
+ [ "es2022.array" , "lib.es2022.array.d.ts" ] ,
77
+ [ "es2022.error" , "lib.es2022.error.d.ts" ] ,
78
+ [ "es2022.object" , "lib.es2022.object.d.ts" ] ,
79
+ [ "es2022.string" , "lib.es2022.string.d.ts" ] ,
80
+ [ "esnext.array" , "lib.es2022.array.d.ts" ] ,
76
81
[ "esnext.symbol" , "lib.es2019.symbol.d.ts" ] ,
77
82
[ "esnext.asynciterable" , "lib.es2018.asynciterable.d.ts" ] ,
78
83
[ "esnext.intl" , "lib.esnext.intl.d.ts" ] ,
79
84
[ "esnext.bigint" , "lib.es2020.bigint.d.ts" ] ,
80
- [ "esnext.string" , "lib.es2021 .string.d.ts" ] ,
85
+ [ "esnext.string" , "lib.es2022 .string.d.ts" ] ,
81
86
[ "esnext.promise" , "lib.es2021.promise.d.ts" ] ,
82
87
[ "esnext.weakref" , "lib.es2021.weakref.d.ts" ]
83
88
] ;
@@ -314,6 +319,7 @@ namespace ts {
314
319
es2019 : ScriptTarget . ES2019 ,
315
320
es2020 : ScriptTarget . ES2020 ,
316
321
es2021 : ScriptTarget . ES2021 ,
322
+ es2022 : ScriptTarget . ES2022 ,
317
323
esnext : ScriptTarget . ESNext ,
318
324
} ) ) ,
319
325
affectsSourceFile : true ,
0 commit comments