Skip to content

Commit 72f491f

Browse files
TsConfigJson: Add missing lib enum values (#1263)
1 parent 7d011ce commit 72f491f

File tree

1 file changed

+24
-4
lines changed

1 file changed

+24
-4
lines changed

source/tsconfig-json.d.ts

Lines changed: 24 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -110,16 +110,19 @@ export namespace TsConfigJson {
110110
| 'ES2018.Regexp'
111111
| 'ES2019'
112112
| 'ES2019.Array'
113+
| 'ES2019.Intl'
113114
| 'ES2019.Object'
114115
| 'ES2019.String'
115116
| 'ES2019.Symbol'
116117
| 'ES2020'
117118
| 'ES2020.BigInt'
119+
| 'ES2020.Date'
120+
| 'ES2020.Intl'
121+
| 'ES2020.Number'
118122
| 'ES2020.Promise'
123+
| 'ES2020.SharedMemory'
119124
| 'ES2020.String'
120125
| 'ES2020.Symbol.WellKnown'
121-
| 'ES2020.SharedMemory'
122-
| 'ES2020.Intl'
123126
| 'ES2021'
124127
| 'ES2021.Intl'
125128
| 'ES2021.Promise'
@@ -131,6 +134,7 @@ export namespace TsConfigJson {
131134
| 'ES2022.Intl'
132135
| 'ES2022.Object'
133136
| 'ES2022.RegExp'
137+
| 'ES2022.SharedMemory'
134138
| 'ES2022.String'
135139
| 'ES2023'
136140
| 'ES2023.Array'
@@ -151,14 +155,20 @@ export namespace TsConfigJson {
151155
| 'ESNext.Collection'
152156
| 'ESNext.Decorators'
153157
| 'ESNext.Disposable'
158+
| 'ESNext.Error'
154159
| 'ESNext.Intl'
155160
| 'ESNext.Iterator'
161+
| 'ESNext.Object'
156162
| 'ESNext.Promise'
163+
| 'ESNext.Regexp'
157164
| 'ESNext.String'
158165
| 'ESNext.Symbol'
159166
| 'ESNext.WeakRef'
160167
| 'DOM'
168+
| 'DOM.AsyncIterable'
161169
| 'DOM.Iterable'
170+
| 'Decorators'
171+
| 'Decorators.Legacy'
162172
| 'ScriptHost'
163173
| 'WebWorker'
164174
| 'WebWorker.AsyncIterable'
@@ -196,16 +206,19 @@ export namespace TsConfigJson {
196206
| 'es2018.regexp'
197207
| 'es2019'
198208
| 'es2019.array'
209+
| 'es2019.intl'
199210
| 'es2019.object'
200211
| 'es2019.string'
201212
| 'es2019.symbol'
202213
| 'es2020'
203214
| 'es2020.bigint'
215+
| 'es2020.date'
216+
| 'es2020.intl'
217+
| 'es2020.number'
204218
| 'es2020.promise'
219+
| 'es2020.sharedmemory'
205220
| 'es2020.string'
206221
| 'es2020.symbol.wellknown'
207-
| 'es2020.sharedmemory'
208-
| 'es2020.intl'
209222
| 'es2021'
210223
| 'es2021.intl'
211224
| 'es2021.promise'
@@ -217,6 +230,7 @@ export namespace TsConfigJson {
217230
| 'es2022.intl'
218231
| 'es2022.object'
219232
| 'es2022.regexp'
233+
| 'es2022.sharedmemory'
220234
| 'es2022.string'
221235
| 'es2023'
222236
| 'es2023.array'
@@ -237,14 +251,20 @@ export namespace TsConfigJson {
237251
| 'esnext.collection'
238252
| 'esnext.decorators'
239253
| 'esnext.disposable'
254+
| 'esnext.error'
240255
| 'esnext.intl'
241256
| 'esnext.iterator'
257+
| 'esnext.object'
242258
| 'esnext.promise'
259+
| 'esnext.regexp'
243260
| 'esnext.string'
244261
| 'esnext.symbol'
245262
| 'esnext.weakref'
246263
| 'dom'
264+
| 'dom.asynciterable'
247265
| 'dom.iterable'
266+
| 'decorators'
267+
| 'decorators.legacy'
248268
| 'scripthost'
249269
| 'webworker'
250270
| 'webworker.asynciterable'

0 commit comments

Comments
 (0)