@@ -15,6 +15,7 @@ namespace ts {
1515 [ "es2016" , "lib.es2016.d.ts" ] ,
1616 [ "es2017" , "lib.es2017.d.ts" ] ,
1717 [ "es2018" , "lib.es2018.d.ts" ] ,
18+ [ "es2019" , "lib.es2019.d.ts" ] ,
1819 [ "esnext" , "lib.esnext.d.ts" ] ,
1920 // Host only
2021 [ "dom" , "lib.dom.d.ts" ] ,
@@ -42,8 +43,11 @@ namespace ts {
4243 [ "es2018.intl" , "lib.es2018.intl.d.ts" ] ,
4344 [ "es2018.promise" , "lib.es2018.promise.d.ts" ] ,
4445 [ "es2018.regexp" , "lib.es2018.regexp.d.ts" ] ,
45- [ "esnext.array" , "lib.esnext.array.d.ts" ] ,
46- [ "esnext.symbol" , "lib.esnext.symbol.d.ts" ] ,
46+ [ "es2019.array" , "lib.es2019.array.d.ts" ] ,
47+ [ "es2019.string" , "lib.es2019.string.d.ts" ] ,
48+ [ "es2019.symbol" , "lib.es2019.symbol.d.ts" ] ,
49+ [ "esnext.array" , "lib.es2019.array.d.ts" ] ,
50+ [ "esnext.symbol" , "lib.es2019.symbol.d.ts" ] ,
4751 [ "esnext.asynciterable" , "lib.es2018.asynciterable.d.ts" ] ,
4852 [ "esnext.intl" , "lib.esnext.intl.d.ts" ] ,
4953 [ "esnext.bigint" , "lib.esnext.bigint.d.ts" ]
@@ -198,14 +202,15 @@ namespace ts {
198202 es2016 : ScriptTarget . ES2016 ,
199203 es2017 : ScriptTarget . ES2017 ,
200204 es2018 : ScriptTarget . ES2018 ,
205+ es2019 : ScriptTarget . ES2019 ,
201206 esnext : ScriptTarget . ESNext ,
202207 } ) ,
203208 affectsSourceFile : true ,
204209 affectsModuleResolution : true ,
205210 paramType : Diagnostics . VERSION ,
206211 showInSimplifiedHelpView : true ,
207212 category : Diagnostics . Basic_Options ,
208- description : Diagnostics . Specify_ECMAScript_target_version_Colon_ES3_default_ES5_ES2015_ES2016_ES2017_ES2018_or_ESNEXT ,
213+ description : Diagnostics . Specify_ECMAScript_target_version_Colon_ES3_default_ES5_ES2015_ES2016_ES2017_ES2018_ES2019_or_ESNEXT ,
209214 } ,
210215 {
211216 name : "module" ,
0 commit comments