@@ -239,195 +239,195 @@ var x = 0;`, {
239239 } ) ;
240240
241241 transpilesCorrectly ( "Supports setting 'allowJs'" , "x;" , {
242- options : { compilerOptions : { allowJs : true } , fileName : "input.js" , reportDiagnostics : true }
242+ options : { compilerOptions : { allowJs : true } , fileName : "input.js" , reportDiagnostics : true }
243243 } ) ;
244244
245245 transpilesCorrectly ( "Supports setting 'allowSyntheticDefaultImports'" , "x;" , {
246- options : { compilerOptions : { allowSyntheticDefaultImports : true } , fileName : "input.js" , reportDiagnostics : true }
246+ options : { compilerOptions : { allowSyntheticDefaultImports : true } , fileName : "input.js" , reportDiagnostics : true }
247247 } ) ;
248248
249249 transpilesCorrectly ( "Supports setting 'allowUnreachableCode'" , "x;" , {
250- options : { compilerOptions : { allowUnreachableCode : true } , fileName : "input.js" , reportDiagnostics : true }
250+ options : { compilerOptions : { allowUnreachableCode : true } , fileName : "input.js" , reportDiagnostics : true }
251251 } ) ;
252252
253253 transpilesCorrectly ( "Supports setting 'allowUnusedLabels'" , "x;" , {
254- options : { compilerOptions : { allowUnusedLabels : true } , fileName : "input.js" , reportDiagnostics : true }
254+ options : { compilerOptions : { allowUnusedLabels : true } , fileName : "input.js" , reportDiagnostics : true }
255255 } ) ;
256256
257257 transpilesCorrectly ( "Supports setting 'baseUrl'" , "x;" , {
258- options : { compilerOptions : { baseUrl : "./folder/baseUrl" } , fileName : "input.js" , reportDiagnostics : true }
258+ options : { compilerOptions : { baseUrl : "./folder/baseUrl" } , fileName : "input.js" , reportDiagnostics : true }
259259 } ) ;
260260
261261 transpilesCorrectly ( "Supports setting 'charset'" , "x;" , {
262- options : { compilerOptions : { charset : "en-us" } , fileName : "input.js" , reportDiagnostics : true }
262+ options : { compilerOptions : { charset : "en-us" } , fileName : "input.js" , reportDiagnostics : true }
263263 } ) ;
264264
265265 transpilesCorrectly ( "Supports setting 'declaration'" , "x;" , {
266- options : { compilerOptions : { declaration : true } , fileName : "input.js" , reportDiagnostics : true }
266+ options : { compilerOptions : { declaration : true } , fileName : "input.js" , reportDiagnostics : true }
267267 } ) ;
268268
269269 transpilesCorrectly ( "Supports setting 'declarationDir'" , "x;" , {
270- options : { compilerOptions : { declarationDir : "out/declarations" } , fileName : "input.js" , reportDiagnostics : true }
270+ options : { compilerOptions : { declarationDir : "out/declarations" } , fileName : "input.js" , reportDiagnostics : true }
271271 } ) ;
272272
273273 transpilesCorrectly ( "Supports setting 'emitBOM'" , "x;" , {
274- options : { compilerOptions : { emitBOM : true } , fileName : "input.js" , reportDiagnostics : true }
274+ options : { compilerOptions : { emitBOM : true } , fileName : "input.js" , reportDiagnostics : true }
275275 } ) ;
276276
277277 transpilesCorrectly ( "Supports setting 'emitDecoratorMetadata'" , "x;" , {
278- options : { compilerOptions : { emitDecoratorMetadata : true , experimentalDecorators : true } , fileName : "input.js" , reportDiagnostics : true }
278+ options : { compilerOptions : { emitDecoratorMetadata : true , experimentalDecorators : true } , fileName : "input.js" , reportDiagnostics : true }
279279 } ) ;
280280
281281 transpilesCorrectly ( "Supports setting 'experimentalDecorators'" , "x;" , {
282- options : { compilerOptions : { experimentalDecorators : true } , fileName : "input.js" , reportDiagnostics : true }
282+ options : { compilerOptions : { experimentalDecorators : true } , fileName : "input.js" , reportDiagnostics : true }
283283 } ) ;
284284
285285 transpilesCorrectly ( "Supports setting 'forceConsistentCasingInFileNames'" , "x;" , {
286- options : { compilerOptions : { forceConsistentCasingInFileNames : true } , fileName : "input.js" , reportDiagnostics : true }
286+ options : { compilerOptions : { forceConsistentCasingInFileNames : true } , fileName : "input.js" , reportDiagnostics : true }
287287 } ) ;
288288
289289 transpilesCorrectly ( "Supports setting 'isolatedModules'" , "x;" , {
290- options : { compilerOptions : { isolatedModules : true } , fileName : "input.js" , reportDiagnostics : true }
290+ options : { compilerOptions : { isolatedModules : true } , fileName : "input.js" , reportDiagnostics : true }
291291 } ) ;
292292
293293 transpilesCorrectly ( "Supports setting 'jsx'" , "x;" , {
294- options : { compilerOptions : { jsx : 1 } , fileName : "input.js" , reportDiagnostics : true }
294+ options : { compilerOptions : { jsx : 1 } , fileName : "input.js" , reportDiagnostics : true }
295295 } ) ;
296296
297297 transpilesCorrectly ( "Supports setting 'lib'" , "x;" , {
298- options : { compilerOptions : { lib : [ "es2015" , "dom" ] } , fileName : "input.js" , reportDiagnostics : true }
298+ options : { compilerOptions : { lib : [ "es2015" , "dom" ] } , fileName : "input.js" , reportDiagnostics : true }
299299 } ) ;
300300
301301 transpilesCorrectly ( "Supports setting 'locale'" , "x;" , {
302- options : { compilerOptions : { locale : "en-us" } , fileName : "input.js" , reportDiagnostics : true }
302+ options : { compilerOptions : { locale : "en-us" } , fileName : "input.js" , reportDiagnostics : true }
303303 } ) ;
304304
305305 transpilesCorrectly ( "Supports setting 'module'" , "x;" , {
306- options : { compilerOptions : { module : ModuleKind . CommonJS } , fileName : "input.js" , reportDiagnostics : true }
306+ options : { compilerOptions : { module : ModuleKind . CommonJS } , fileName : "input.js" , reportDiagnostics : true }
307307 } ) ;
308308
309309 transpilesCorrectly ( "Supports setting 'moduleResolution'" , "x;" , {
310- options : { compilerOptions : { moduleResolution : ModuleResolutionKind . NodeJs } , fileName : "input.js" , reportDiagnostics : true }
310+ options : { compilerOptions : { moduleResolution : ModuleResolutionKind . NodeJs } , fileName : "input.js" , reportDiagnostics : true }
311311 } ) ;
312312
313313 transpilesCorrectly ( "Supports setting 'newLine'" , "x;" , {
314- options : { compilerOptions : { newLine : NewLineKind . CarriageReturnLineFeed } , fileName : "input.js" , reportDiagnostics : true }
314+ options : { compilerOptions : { newLine : NewLineKind . CarriageReturnLineFeed } , fileName : "input.js" , reportDiagnostics : true }
315315 } ) ;
316316
317317 transpilesCorrectly ( "Supports setting 'noEmit'" , "x;" , {
318- options : { compilerOptions : { noEmit : true } , fileName : "input.js" , reportDiagnostics : true }
318+ options : { compilerOptions : { noEmit : true } , fileName : "input.js" , reportDiagnostics : true }
319319 } ) ;
320320
321321 transpilesCorrectly ( "Supports setting 'noEmitHelpers'" , "x;" , {
322- options : { compilerOptions : { noEmitHelpers : true } , fileName : "input.js" , reportDiagnostics : true }
322+ options : { compilerOptions : { noEmitHelpers : true } , fileName : "input.js" , reportDiagnostics : true }
323323 } ) ;
324324
325325 transpilesCorrectly ( "Supports setting 'noEmitOnError'" , "x;" , {
326- options : { compilerOptions : { noEmitOnError : true } , fileName : "input.js" , reportDiagnostics : true }
326+ options : { compilerOptions : { noEmitOnError : true } , fileName : "input.js" , reportDiagnostics : true }
327327 } ) ;
328328
329329 transpilesCorrectly ( "Supports setting 'noErrorTruncation'" , "x;" , {
330- options : { compilerOptions : { noErrorTruncation : true } , fileName : "input.js" , reportDiagnostics : true }
330+ options : { compilerOptions : { noErrorTruncation : true } , fileName : "input.js" , reportDiagnostics : true }
331331 } ) ;
332332
333333 transpilesCorrectly ( "Supports setting 'noFallthroughCasesInSwitch'" , "x;" , {
334- options : { compilerOptions : { noFallthroughCasesInSwitch : true } , fileName : "input.js" , reportDiagnostics : true }
334+ options : { compilerOptions : { noFallthroughCasesInSwitch : true } , fileName : "input.js" , reportDiagnostics : true }
335335 } ) ;
336336
337337 transpilesCorrectly ( "Supports setting 'noImplicitAny'" , "x;" , {
338- options : { compilerOptions : { noImplicitAny : true } , fileName : "input.js" , reportDiagnostics : true }
338+ options : { compilerOptions : { noImplicitAny : true } , fileName : "input.js" , reportDiagnostics : true }
339339 } ) ;
340340
341341 transpilesCorrectly ( "Supports setting 'noImplicitReturns'" , "x;" , {
342- options : { compilerOptions : { noImplicitReturns : true } , fileName : "input.js" , reportDiagnostics : true }
342+ options : { compilerOptions : { noImplicitReturns : true } , fileName : "input.js" , reportDiagnostics : true }
343343 } ) ;
344344
345345 transpilesCorrectly ( "Supports setting 'noImplicitThis'" , "x;" , {
346- options : { compilerOptions : { noImplicitThis : true } , fileName : "input.js" , reportDiagnostics : true }
346+ options : { compilerOptions : { noImplicitThis : true } , fileName : "input.js" , reportDiagnostics : true }
347347 } ) ;
348348
349349 transpilesCorrectly ( "Supports setting 'noImplicitUseStrict'" , "x;" , {
350- options : { compilerOptions : { noImplicitUseStrict : true } , fileName : "input.js" , reportDiagnostics : true }
350+ options : { compilerOptions : { noImplicitUseStrict : true } , fileName : "input.js" , reportDiagnostics : true }
351351 } ) ;
352352
353353 transpilesCorrectly ( "Supports setting 'noLib'" , "x;" , {
354- options : { compilerOptions : { noLib : true } , fileName : "input.js" , reportDiagnostics : true }
354+ options : { compilerOptions : { noLib : true } , fileName : "input.js" , reportDiagnostics : true }
355355 } ) ;
356356
357357 transpilesCorrectly ( "Supports setting 'noResolve'" , "x;" , {
358- options : { compilerOptions : { noResolve : true } , fileName : "input.js" , reportDiagnostics : true }
358+ options : { compilerOptions : { noResolve : true } , fileName : "input.js" , reportDiagnostics : true }
359359 } ) ;
360360
361361 transpilesCorrectly ( "Supports setting 'out'" , "x;" , {
362- options : { compilerOptions : { out : "./out" } , fileName : "input.js" , reportDiagnostics : true }
362+ options : { compilerOptions : { out : "./out" } , fileName : "input.js" , reportDiagnostics : true }
363363 } ) ;
364364
365365 transpilesCorrectly ( "Supports setting 'outDir'" , "x;" , {
366- options : { compilerOptions : { outDir : "./outDir" } , fileName : "input.js" , reportDiagnostics : true }
366+ options : { compilerOptions : { outDir : "./outDir" } , fileName : "input.js" , reportDiagnostics : true }
367367 } ) ;
368368
369369 transpilesCorrectly ( "Supports setting 'outFile'" , "x;" , {
370- options : { compilerOptions : { outFile : "./outFile" } , fileName : "input.js" , reportDiagnostics : true }
370+ options : { compilerOptions : { outFile : "./outFile" } , fileName : "input.js" , reportDiagnostics : true }
371371 } ) ;
372372
373373 transpilesCorrectly ( "Supports setting 'paths'" , "x;" , {
374- options : { compilerOptions : { paths : { "*" : [ "./generated*" ] } } , fileName : "input.js" , reportDiagnostics : true }
374+ options : { compilerOptions : { paths : { "*" : [ "./generated*" ] } } , fileName : "input.js" , reportDiagnostics : true }
375375 } ) ;
376376
377377 transpilesCorrectly ( "Supports setting 'preserveConstEnums'" , "x;" , {
378- options : { compilerOptions : { preserveConstEnums : true } , fileName : "input.js" , reportDiagnostics : true }
378+ options : { compilerOptions : { preserveConstEnums : true } , fileName : "input.js" , reportDiagnostics : true }
379379 } ) ;
380380
381381 transpilesCorrectly ( "Supports setting 'reactNamespace'" , "x;" , {
382- options : { compilerOptions : { reactNamespace : "react" } , fileName : "input.js" , reportDiagnostics : true }
382+ options : { compilerOptions : { reactNamespace : "react" } , fileName : "input.js" , reportDiagnostics : true }
383383 } ) ;
384384
385385 transpilesCorrectly ( "Supports setting 'removeComments'" , "x;" , {
386- options : { compilerOptions : { removeComments : true } , fileName : "input.js" , reportDiagnostics : true }
386+ options : { compilerOptions : { removeComments : true } , fileName : "input.js" , reportDiagnostics : true }
387387 } ) ;
388388
389389 transpilesCorrectly ( "Supports setting 'rootDir'" , "x;" , {
390- options : { compilerOptions : { rootDir : "./rootDir" } , fileName : "input.js" , reportDiagnostics : true }
390+ options : { compilerOptions : { rootDir : "./rootDir" } , fileName : "input.js" , reportDiagnostics : true }
391391 } ) ;
392392
393393 transpilesCorrectly ( "Supports setting 'rootDirs'" , "x;" , {
394- options : { compilerOptions : { rootDirs : [ "./a" , "./b" ] } , fileName : "input.js" , reportDiagnostics : true }
394+ options : { compilerOptions : { rootDirs : [ "./a" , "./b" ] } , fileName : "input.js" , reportDiagnostics : true }
395395 } ) ;
396396
397397 transpilesCorrectly ( "Supports setting 'skipLibCheck'" , "x;" , {
398- options : { compilerOptions : { skipLibCheck : true } , fileName : "input.js" , reportDiagnostics : true }
398+ options : { compilerOptions : { skipLibCheck : true } , fileName : "input.js" , reportDiagnostics : true }
399399 } ) ;
400400
401401 transpilesCorrectly ( "Supports setting 'skipDefaultLibCheck'" , "x;" , {
402- options : { compilerOptions : { skipDefaultLibCheck : true } , fileName : "input.js" , reportDiagnostics : true }
402+ options : { compilerOptions : { skipDefaultLibCheck : true } , fileName : "input.js" , reportDiagnostics : true }
403403 } ) ;
404404
405405 transpilesCorrectly ( "Supports setting 'strictNullChecks'" , "x;" , {
406- options : { compilerOptions : { strictNullChecks : true } , fileName : "input.js" , reportDiagnostics : true }
406+ options : { compilerOptions : { strictNullChecks : true } , fileName : "input.js" , reportDiagnostics : true }
407407 } ) ;
408408
409409 transpilesCorrectly ( "Supports setting 'stripInternal'" , "x;" , {
410- options : { compilerOptions : { stripInternal : true } , fileName : "input.js" , reportDiagnostics : true }
410+ options : { compilerOptions : { stripInternal : true } , fileName : "input.js" , reportDiagnostics : true }
411411 } ) ;
412412
413413 transpilesCorrectly ( "Supports setting 'suppressExcessPropertyErrors'" , "x;" , {
414- options : { compilerOptions : { suppressExcessPropertyErrors : true } , fileName : "input.js" , reportDiagnostics : true }
414+ options : { compilerOptions : { suppressExcessPropertyErrors : true } , fileName : "input.js" , reportDiagnostics : true }
415415 } ) ;
416416
417417 transpilesCorrectly ( "Supports setting 'suppressImplicitAnyIndexErrors'" , "x;" , {
418- options : { compilerOptions : { suppressImplicitAnyIndexErrors : true } , fileName : "input.js" , reportDiagnostics : true }
418+ options : { compilerOptions : { suppressImplicitAnyIndexErrors : true } , fileName : "input.js" , reportDiagnostics : true }
419419 } ) ;
420420
421421 transpilesCorrectly ( "Supports setting 'target'" , "x;" , {
422- options : { compilerOptions : { target : 2 } , fileName : "input.js" , reportDiagnostics : true }
422+ options : { compilerOptions : { target : 2 } , fileName : "input.js" , reportDiagnostics : true }
423423 } ) ;
424424
425425 transpilesCorrectly ( "Supports setting 'types'" , "x;" , {
426- options : { compilerOptions : { types : [ "jquery" , "jasmine" ] } , fileName : "input.js" , reportDiagnostics : true }
426+ options : { compilerOptions : { types : [ "jquery" , "jasmine" ] } , fileName : "input.js" , reportDiagnostics : true }
427427 } ) ;
428428
429429 transpilesCorrectly ( "Supports setting 'typeRoots'" , "x;" , {
430- options : { compilerOptions : { typeRoots : [ "./folder" ] } , fileName : "input.js" , reportDiagnostics : true }
430+ options : { compilerOptions : { typeRoots : [ "./folder" ] } , fileName : "input.js" , reportDiagnostics : true }
431431 } ) ;
432432 } ) ;
433433}
0 commit comments