@@ -143,6 +143,8 @@ func ParseCompilerOptions(key string, value any, allOptions *core.CompilerOption
143
143
switch key {
144
144
case "allowJs" :
145
145
allOptions .AllowJs = parseTristate (value )
146
+ case "allowImportingTsExtensions" :
147
+ allOptions .AllowImportingTsExtensions = parseTristate (value )
146
148
case "allowSyntheticDefaultImports" :
147
149
allOptions .AllowSyntheticDefaultImports = parseTristate (value )
148
150
case "allowNonTsExtensions" :
@@ -185,6 +187,12 @@ func ParseCompilerOptions(key string, value any, allOptions *core.CompilerOption
185
187
allOptions .DeclarationMap = parseTristate (value )
186
188
case "declaration" :
187
189
allOptions .Declaration = parseTristate (value )
190
+ case "downlevelIteration" :
191
+ allOptions .DownlevelIteration = parseTristate (value )
192
+ case "emitDeclarationOnly" :
193
+ allOptions .EmitDeclarationOnly = parseTristate (value )
194
+ case "eSModuleInterop" :
195
+ allOptions .ESModuleInterop = parseTristate (value )
188
196
case "extendedDiagnostics" :
189
197
allOptions .ExtendedDiagnostics = parseTristate (value )
190
198
case "emitDecoratorMetadata" :
@@ -261,6 +269,8 @@ func ParseCompilerOptions(key string, value any, allOptions *core.CompilerOption
261
269
allOptions .NoFallthroughCasesInSwitch = parseTristate (value )
262
270
case "noEmitForJsFiles" :
263
271
allOptions .NoEmitForJsFiles = parseTristate (value )
272
+ case "noErrorTruncation" :
273
+ allOptions .NoErrorTruncation = parseTristate (value )
264
274
case "noImplicitAny" :
265
275
allOptions .NoImplicitAny = parseTristate (value )
266
276
case "noImplicitThis" :
@@ -311,6 +321,8 @@ func ParseCompilerOptions(key string, value any, allOptions *core.CompilerOption
311
321
allOptions .ResolvePackageJsonImports = parseTristate (value )
312
322
case "reactNamespace" :
313
323
allOptions .ReactNamespace = parseString (value )
324
+ case "rewriteRelativeImportExtensions" :
325
+ allOptions .RewriteRelativeImportExtensions = parseTristate (value )
314
326
case "rootDir" :
315
327
allOptions .RootDir = parseString (value )
316
328
case "rootDirs" :
0 commit comments