-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompiler-options.mts
1475 lines (1353 loc) · 32.5 KB
/
compiler-options.mts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* @file CompilerOptions
* @module tsconfig-types/CompilerOptions
* @see https://github.com/SchemaStore/schemastore/blob/67741b904851789f54f98b8df194cbf8eeb89ed7/src/schemas/json/tsconfig.json#L224-L1243
*/
import type { Condition } from '@flex-development/pkg-types'
import type {
CompilerOptionsValue,
FallbackPolling,
ImportsNotUsedAsValues,
JsxEmit,
JsxFactory,
JsxFragmentFactory,
JsxImportSource,
Lib,
Module,
ModuleDetection,
ModuleResolution,
NewLine,
Paths,
Plugin,
Target,
WatchDirectory,
WatchFile
} from '@flex-development/tsconfig-types'
/**
* TypeScript compiler options.
*
* This interface can be augmented to register custom fields. Field values are
* expected to be compatible with {@linkcode CompilerOptionsValue}.
*
* @see https://www.typescriptlang.org/tsconfig#compilerOptions
*/
interface CompilerOptions {
[option: string]: CompilerOptionsValue
/**
* Enable importing files with any extension, provided a declaration file is
* present.
*
* @see https://www.typescriptlang.org/tsconfig#allowImportingTsExtensions
*
* @category
* modules
*/
allowArbitraryExtensions?: boolean | null
/**
* Allow imports to include TypeScript file extensions.
*
* > 👉 **Note**: Requires {@linkcode moduleResolution} to be set to `bundler`
* > and either {@linkcode emitDeclarationOnly} or {@linkcode noEmit} to be
* > set.
*
* @see https://www.typescriptlang.org/tsconfig#allowImportingTsExtensions
*
* @category
* modules
*/
allowImportingTsExtensions?: boolean | null
/**
* Allow JavaScript files to be a part of the program.
*
* Use {@linkcode checkJS} to get errors from these files.
*
* @see https://www.typescriptlang.org/tsconfig#allowJs
*
* @category
* javascript-support
*
* @default false
*/
allowJs?: boolean | null
/**
* Allow default imports when a module doesn't have a default export.
*
* This has no impact on how files are emitted — only type checking.
*
* @see https://www.typescriptlang.org/tsconfig#allowSyntheticDefaultImports
*
* @category
* interop-constraints
*/
allowSyntheticDefaultImports?: boolean | null
/**
* Allow accessing UMD globals from modules.
*
* @category
* modules
*
* @default false
*/
allowUmdGlobalAccess?: boolean | null
/**
* Disable reporting for unreachable code.
*
* @see https://www.typescriptlang.org/tsconfig#allowUnreachableCode
*
* @category
* type-checking
*/
allowUnreachableCode?: boolean | null
/**
* Disable error reporting for unused labels.
*
* @see https://www.typescriptlang.org/tsconfig#allowUnusedLabels
*
* @category
* type-checking
*/
allowUnusedLabels?: boolean | null
/**
* Ensure `'use strict'` is always emitted.
*
* @see https://www.typescriptlang.org/tsconfig#alwaysStrict
*
* @category
* type-checking
*/
alwaysStrict?: boolean | null
/**
* Have recompiles in projects that use {@linkcode incremental} and `watch`
* mode assume that changes within a file will only affect files directly
* depending on it.
*
* @see https://www.typescriptlang.org/tsconfig#assumeChangesOnlyAffectDirectDependencies
*
* @category
* watch-options
*/
assumeChangesOnlyAffectDirectDependencies?: boolean | null
/**
* The base directory to resolve non-relative module names.
*
* > 👉 **Note**: This feature was designed for use in conjunction with AMD
* > module loaders in the browser, and is not recommended in any other
* > context. As of TypeScript 4.1, `baseUrl` is no longer required to be set
* > when using {@linkcode paths}.
*
* @see https://www.typescriptlang.org/tsconfig#baseUrl
*
* @category
* modules
*/
baseUrl?: string | null
/**
* Text encoding for reading files.
*
* @see https://www.typescriptlang.org/tsconfig#charset
*
* @category
* backwards-compatibility
*
* @deprecated
*/
charset?: string | null
/**
* Enable error reporting in type-checked JavaScript files.
*
* > 👉 **Note**: This is the equivalent of adding `// @ts-check` to the
* > beginning of all JavaScript files included in a project.
*
* @see https://www.typescriptlang.org/tsconfig#checkJs
*
* @category
* javascript-support
*
* @default false
*/
checkJs?: boolean | null
/**
* Enable constraints that allow a TypeScript project to be used with project
* references.
*
* @see https://www.typescriptlang.org/tsconfig#composite
*
* @category
* projects
*
* @default true
*/
composite?: boolean | null
/**
* List of additional [conditions][conditions] that should succeed when
* TypeScript resolves from a `package.json` [`exports`][exports] or
* [`imports`][imports] field. These conditions are added to whatever existing
* conditions a resolver will use by default.
*
* [conditions]: https://nodejs.org/api/packages.html#nested-conditions
* [exports]: https://nodejs.org/api/packages.html#exports
* [imports]: https://nodejs.org/api/packages.html#imports
*
* @see https://www.typescriptlang.org/tsconfig#customConditions
* @see {@linkcode Condition}
*
* @category
* modules
*/
customConditions?: Condition[] | null
/**
* Generate `.d.ts` files.
*
* @see https://www.typescriptlang.org/tsconfig#declaration
*
* @category
* emit
*
* @default false
*/
declaration?: boolean | null
/**
* Output directory for generated declaration files.
*
* @see https://www.typescriptlang.org/tsconfig#declarationDir
*
* @category
* emit
*/
declarationDir?: string | null
/**
* Create sourcemaps for `d.ts` files.
*
* @see https://www.typescriptlang.org/tsconfig#declarationMap
*
* @category
* emit
*
* @default false
*/
declarationMap?: boolean | null
/**
* Output compiler performance information after building.
*
* @see https://www.typescriptlang.org/tsconfig#diagnostics
*
* @category
* compiler-diagnostics
*/
diagnostics?: boolean | null
/**
* Reduce the number of projects loaded automatically by TypeScript.
*
* @see https://www.typescriptlang.org/tsconfig#disableReferencedProjectLoad
*
* @category
* projects
*/
disableReferencedProjectLoad?: boolean | null
/**
* Remove the `20mb` cap on total source code size for JavaScript files in the
* TypeScript language server.
*
* @see https://www.typescriptlang.org/tsconfig#disableSizeLimit
*
* @category
* editor-support
*
* @default false
*/
disableSizeLimit?: boolean | null
/**
* Opt a project out of multi-project reference checking when editing.
*
* @see https://www.typescriptlang.org/tsconfig#disableSolutionSearching
*
* @category
* projects
*/
disableSolutionSearching?: boolean | null
/**
* Disable preferring source files instead of declaration files when
* referencing composite projects.
*
* @see https://www.typescriptlang.org/tsconfig#disableSourceOfProjectReferenceRedirect
*
* @category
* projects
*/
disableSourceOfProjectReferenceRedirect?: boolean | null
/**
* Emit more compliant, but verbose and less performant, JavaScript for
* iteration.
*
* @see https://www.typescriptlang.org/tsconfig#downlevelIteration
*
* @category
* emit
*
* @default false
*/
downlevelIteration?: boolean | null
/**
* Prepend a UTF-8 Byte Order Mark (BOM) to output files.
*
* @see https://www.typescriptlang.org/tsconfig#emitBOM
*
* @category
* emit
*
* @default false
*/
emitBOM?: boolean | null
/**
* Only output `d.ts` files and not JavaScript files.
*
* @see https://www.typescriptlang.org/tsconfig#emitDeclarationOnly
*
* @category
* emit
*
* @default false
*/
emitDeclarationOnly?: boolean | null
/**
* Emit design-type metadata for decorated declarations in source files.
*
* @see https://www.typescriptlang.org/tsconfig#emitDecoratorMetadata
*
* @category
* language-and-environment
*/
emitDecoratorMetadata?: boolean | null
/**
* Emit additional JavaScript to ease support for importing CommonJS modules.
* Enables {@linkcode allowSyntheticDefaultImports} for type compatibility.
*
* @see https://www.typescriptlang.org/tsconfig#esModuleInterop
*
* @category
* interop-constraints
*
* @default false
*/
esModuleInterop?: boolean | null
/**
* Differentiate between `undefined` and not present when type checking.
*
* @see https://www.typescriptlang.org/tsconfig#exactOptionalPropertyTypes
*
* @category
* type-checking
*
* @default false
*/
exactOptionalPropertyTypes?: boolean | null
/**
* Enable experimental support for [TC39 stage 2 decorators][decorators].
*
* [decorators]: https://github.com/tc39/proposal-decorators
*
* @see https://www.typescriptlang.org/tsconfig#experimentalDecorators
*
* @category
* language-and-environment
*/
experimentalDecorators?: boolean | null
/**
* Print files read during the compilation and why they are included.
*
* @see https://www.typescriptlang.org/tsconfig/#explainFiles
*
* @category
* compiler-diagnostics
*/
explainFiles?: boolean | null
/**
* Output more detailed compiler performance information after building.
*
* @see https://www.typescriptlang.org/tsconfig#extendedDiagnostics
*
* @category
* compiler-diagnostics
*
* @default false
*/
extendedDiagnostics?: boolean | null
/**
* Polling strategy to use when the system runs out of native file watchers
* and/or doesn’t support native file watchers.
*
* @see https://www.typescriptlang.org/tsconfig/#watch-fallbackPolling
* @see {@linkcode FallbackPolling}
*
* @category
* watch-options
*
* @deprecated Use `watchOptions.fallbackPolling` instead
*/
fallbackPolling?: FallbackPolling | null
/**
* Ensure that casing is correct in imports.
*
* @see https://www.typescriptlang.org/tsconfig#forceConsistentCasingInFileNames
*
* @category
* interop-constraints
*
* @default false
*/
forceConsistentCasingInFileNames?: boolean | null
/**
* Emit a v8 CPU profile of the compiler run for debugging.
*
* @see https://www.typescriptlang.org/tsconfig#generateCpuProfile
*
* @category
* compiler-diagnostics
*
* @default 'profile.cpuprofile'
*/
generateCpuProfile?: string | null
/**
* Generate an event trace and a list of types.
*
* @see https://www.typescriptlang.org/tsconfig#generateTrace
*
* @category
* compiler-diagnostics
*/
generateTrace?: boolean | null
/**
* Ignore errors generated from deprecated compiler options.
*
* @see https://github.com/microsoft/TypeScript/issues/51000
* @see https://github.com/microsoft/TypeScript/issues/51909
*
* @category
* backwards-compatibility
*/
ignoreDeprecations?: '5.0' | null
/**
* Allow importing helper functions from [`tslib`][tslib] once per project,
* instead of including them per-file.
*
* [tslib]: https://github.com/microsoft/tslib
*
* @see https://www.typescriptlang.org/tsconfig#importHelpers
*
* @category
* emit
*
* @default false
*/
importHelpers?: boolean | null
/**
* Emit/checking behavior for imports that are only used for types.
*
* @see https://www.typescriptlang.org/tsconfig/#importsNotUsedAsValues
* @see {@linkcode ImportsNotUsedAsValues}
*
* @category
* backwards-compatibility
*
* @deprecated Use {@linkcode verbatimModuleSyntax}
* @default 'remove'
*/
importsNotUsedAsValues?: ImportsNotUsedAsValues | null
/**
* Enable incremental compilation.
*
* @see https://www.typescriptlang.org/tsconfig/#incremental
*
* @category
* projects
*/
incremental?: boolean | null
/**
* Include sourcemap files inside emitted JavaScript.
*
* @see https://www.typescriptlang.org/tsconfig#inlineSourceMap
*
* @category
* emit
*
* @default false
*/
inlineSourceMap?: boolean | null
/**
* Include source code in the sourcemaps inside emitted JavaScript.
*
* > 👉 **Note**: Requires {@linkcode inlineSourceMap}.
*
* @see https://www.typescriptlang.org/tsconfig#inlineSourceMap
*
* @category
* emit
*
* @default false
*/
inlineSources?: boolean | null
/**
* Require sufficient annotation on exports so other tools can trivially
* generate declaration files.
*
* @see https://www.typescriptlang.org/tsconfig#isolatedDeclarations
*
* @category
* interop-constraints
*
* @default false
*/
isolatedDeclarations?: boolean | null
/**
* Ensure each file can be safely transpiled without relying on other imports.
*
* @see https://www.typescriptlang.org/tsconfig#isolatedModules
*
* @category
* interop-constraints
*
* @default false
*/
isolatedModules?: boolean | null
/**
* Type of JSX code to generate.
*
* @see https://www.typescriptlang.org/tsconfig/#jsx
* @see {@linkcode JsxEmit}
*
* @category
* language-and-environment
*/
jsx?: JsxEmit | null
/**
* JSX factory function to use when targeting React JSX emit.
*
* @see https://www.typescriptlang.org/tsconfig/#jsxFactory
* @see {@linkcode JsxFactory}
*
* @category
* language-and-environment
*
* @default 'React.createElement'
*/
jsxFactory?: JsxFactory | null
/**
* JSX Fragment reference to use when targeting React JSX emit.
*
* @see https://www.typescriptlang.org/tsconfig/#jsxFragmentFactory
* @see {@linkcode JsxFragmentFactory}
*
* @category
* language-and-environment
*
* @default 'React.Fragment'
*/
jsxFragmentFactory?: JsxFragmentFactory | null
/**
* Module specifier used to import JSX factory functions.
*
* @see https://www.typescriptlang.org/tsconfig/#jsxImportSource
* @see {@linkcode JsxImportSource}
*
* @category
* language-and-environment
*
* @default 'react'
*/
jsxImportSource?: JsxImportSource | null
/**
* Make `keyof` only return strings instead of string, numbers or symbols.
*
* @see https://www.typescriptlang.org/tsconfig#keyofStringsOnly
*
* @category
* backwards-compatibility
*
* @deprecated
* @default false
*/
keyofStringsOnly?: boolean | null
/**
* Set of bundled library declaration files that describe the target runtime
* environment.
*
* @see https://www.typescriptlang.org/tsconfig#lib
* @see {@linkcode Lib}
*
* @category
* language-and-environment
*/
lib?: Lib[] | null
/**
* Print the names of emitted files after a compilation.
*
* @see https://www.typescriptlang.org/tsconfig#listEmittedFiles
*
* @category
* compiler-diagnostics
*
* @default false
*/
listEmittedFiles?: boolean | null
/**
* Print all of the files read during the compilation.
*
* @see https://www.typescriptlang.org/tsconfig#listFiles
*
* @category
* compiler-diagnostics
*
* @default false
*/
listFiles?: boolean | null
/**
* Print the names of files that are part of the compilation and then stop
* processing.
*
* @category
* compiler-diagnostics
*/
listFilesOnly?: boolean | null
/**
* Location where the debugger should locate map files instead of generated
* locations.
*
* @see https://www.typescriptlang.org/tsconfig#mapRoot
*
* @category
* emit
*/
mapRoot?: string | null
/**
* Maximum folder depth used for checking JavaScript files from
* `node_modules`.
*
* > 👉 **Note**: Only applicable with {@linkcode allowJs}.
*
* @see https://www.typescriptlang.org/tsconfig#maxNodeModuleJsDepth
*
* @category
* javascript-support
*
* @default 0
*/
maxNodeModuleJsDepth?: number | null
/**
* Module system.
*
* @see https://www.typescriptlang.org/tsconfig#module
* @see {@linkcode Module}
*
* @category
* modules
*/
module?: Module | null
/**
* Strategy used to determine if a file is a module.
*
* @see https://www.typescriptlang.org/tsconfig#moduleDetection
* @see {@linkcode ModuleDetection}
*
* @category
* language-and-environment
*/
moduleDetection?: ModuleDetection | null
/**
* Strategy used to look up a file from a module specifier.
*
* @see https://www.typescriptlang.org/tsconfig#moduleResolution
* @see {@linkcode ModuleResolution}
*
* @category
* modules
*/
moduleResolution?: ModuleResolution | null
/**
* List of file name suffixes to search when resolving a module.
*
* @see https://www.typescriptlang.org/tsconfig#moduleSuffixes
*
* @category
* modules
*/
moduleSuffixes?: string[] | null
/**
* End of line sequence to be used when emitting files.
*
* @see https://www.typescriptlang.org/tsconfig#newLine
* @see {@linkcode NewLine}
*
* @category
* emit
*/
newLine?: NewLine | null
/**
* Disable full type checking.
*
* @see https://www.typescriptlang.org/tsconfig#noCheck
*
* @category
* compiler-diagnostics
*
* @default false
*/
noCheck?: boolean | null
/**
* Disable emitting files.
*
* @see https://www.typescriptlang.org/tsconfig#noEmit
*
* @category
* emit
*
* @default false
*/
noEmit?: boolean | null
/**
* Disable generating custom helper functions like `__extends` in compiled
* output.
*
* @see https://www.typescriptlang.org/tsconfig#noEmitHelpers
*
* @category
* emit
*
* @default false
*/
noEmitHelpers?: boolean | null
/**
* Disable emitting files if any type checking errors are reported.
*
* @see https://www.typescriptlang.org/tsconfig#noEmitOnError
*
* @category
* emit
*
* @default false
*/
noEmitOnError?: boolean | null
/**
* Disable truncating types in error messages.
*
* @see https://www.typescriptlang.org/tsconfig#noErrorTruncation
*
* @category
* output-formatting
*
* @default false
*/
noErrorTruncation?: boolean | null
/**
* Enable error reporting for fallthrough cases in `switch` statements.
*
* @see https://www.typescriptlang.org/tsconfig#noFallthroughCasesInSwitch
*
* @category
* type-checking
*
* @default false
*/
noFallthroughCasesInSwitch?: boolean | null
/**
* Enable error reporting for expressions and declarations with an implied
* `any` type.
*
* @see https://www.typescriptlang.org/tsconfig#noImplicitAny
*
* @category
* type-checking
*/
noImplicitAny?: boolean | null
/**
* Ensure overriding members in derived classes are marked with an `override`
* modifier.
*
* @see https://www.typescriptlang.org/tsconfig#noImplicitOverride
*
* @category
* type-checking
*
* @default false
*/
noImplicitOverride?: boolean | null
/**
* Enable error reporting for codepaths that do not explicitly `return` in a
* function.
*
* @see https://www.typescriptlang.org/tsconfig#noImplicitReturns
*
* @category
* type-checking
*
* @default false
*/
noImplicitReturns?: boolean | null
/**
* Enable error reporting when `this` is given the type `any`.
*
* @see https://www.typescriptlang.org/tsconfig#noImplicitThis
*
* @category
* type-checking
*/
noImplicitThis?: boolean | null
/**
* Disable adding `'use strict'` directives in emitted JavaScript files.
*
* @see https://www.typescriptlang.org/tsconfig#noImplicitUseStrict
*
* @category
* backwards-compatibility
*
* @deprecated
* @default false
*/
noImplicitUseStrict?: boolean | null
/**
* Disable including any library files, including the default `lib.d.ts`.
*
* @see https://www.typescriptlang.org/tsconfig#noLib
*
* @category
* language-and-environment
*
* @default false
*/
noLib?: boolean | null
/**
* Enforces using indexed accessors for keys declared using an indexed type.
*
* @see https://www.typescriptlang.org/tsconfig#noPropertyAccessFromIndexSignature
*
* @category
* type-checking
*/
noPropertyAccessFromIndexSignature?: boolean | null
/**
* Prevent `import`, `require` and `<reference>` from expanding the number of
* files TypeScript should add to a project.
*
* @see https://www.typescriptlang.org/tsconfig#noResolve
*
* @category
* modules
*
* @default false
*/
noResolve?: boolean | null
/**
* Disable strict checking of generic signatures in function types.
*
* @see https://www.typescriptlang.org/tsconfig#noStrictGenericChecks
*
* @category
* backwards-compatibility
*
* @deprecated
* @default false
*/
noStrictGenericChecks?: boolean | null
/**
* Add `undefined` to a type when accessed using an index.
*
* @see https://www.typescriptlang.org/tsconfig#noUncheckedIndexedAccess
*
* @category
* type-checking
*/
noUncheckedIndexedAccess?: boolean | null
/**
* Check side effect imports.
*
* @see https://www.typescriptlang.org/tsconfig#noUncheckedSideEffectImports
*
* @category
* modules
*
* @default false
*/
noUncheckedSideEffectImports?: boolean | null
/**
* Enable error reporting when local variables aren't read.
*
* @see https://www.typescriptlang.org/tsconfig#noUnusedLocals
*
* @category
* type-checking
*
* @default false
*/
noUnusedLocals?: boolean | null
/**
* Raise an error when a function parameter isn't read.
*
* @see https://www.typescriptlang.org/tsconfig#noUnusedParameters
*
* @category
* type-checking
*
* @default false
*/
noUnusedParameters?: boolean | null
/**
* @see https://www.typescriptlang.org/tsconfig/#out
*
* @category
* backwards-compatibility
*
* @deprecated Use {@linkcode outFile} instead
*/
out?: string | null
/**
* Output folder for all emitted files.
*
* @see https://www.typescriptlang.org/tsconfig#outDir
*
* @category
* emit
*/
outDir?: string | null
/**
* File that bundles all outputs into one JavaScript file.
*
* If {@linkcode declaration} is `true`, this also designates a file that
* bundles all `.d.ts` output.
*
* @see https://www.typescriptlang.org/tsconfig#outFile
*