@effect/tsgo 0.19.0 → 0.20.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/schema.json ADDED
@@ -0,0 +1,2827 @@
1
+ {
2
+ "$comment": "Note that this schema uses 'null' in various places. The value of 'null' is UNDOCUMENTED (https://github.com/microsoft/TypeScript/pull/18058)",
3
+ "$schema": "http://json-schema.org/draft-04/schema#",
4
+ "allOf": [
5
+ {
6
+ "$ref": "#/definitions/compilerOptionsDefinition"
7
+ },
8
+ {
9
+ "$ref": "#/definitions/compileOnSaveDefinition"
10
+ },
11
+ {
12
+ "$ref": "#/definitions/typeAcquisitionDefinition"
13
+ },
14
+ {
15
+ "$ref": "#/definitions/extendsDefinition"
16
+ },
17
+ {
18
+ "$ref": "#/definitions/watchOptionsDefinition"
19
+ },
20
+ {
21
+ "$ref": "#/definitions/buildOptionsDefinition"
22
+ },
23
+ {
24
+ "$ref": "#/definitions/tsNodeDefinition"
25
+ },
26
+ {
27
+ "anyOf": [
28
+ {
29
+ "$ref": "#/definitions/filesDefinition"
30
+ },
31
+ {
32
+ "$ref": "#/definitions/excludeDefinition"
33
+ },
34
+ {
35
+ "$ref": "#/definitions/includeDefinition"
36
+ },
37
+ {
38
+ "$ref": "#/definitions/referencesDefinition"
39
+ }
40
+ ]
41
+ }
42
+ ],
43
+ "allowTrailingCommas": true,
44
+ "definitions": {
45
+ "//": {
46
+ "explainer": "https://www.typescriptlang.org/docs/handbook/tsconfig-json.html#overview",
47
+ "reference": "https://www.typescriptlang.org/tsconfig",
48
+ "reference metadata": "https://github.com/microsoft/TypeScript-Website/blob/v2/packages/tsconfig-reference/scripts/tsconfigRules.ts"
49
+ },
50
+ "buildOptionsDefinition": {
51
+ "properties": {
52
+ "buildOptions": {
53
+ "properties": {
54
+ "assumeChangesOnlyAffectDirectDependencies": {
55
+ "default": false,
56
+ "description": "Have recompiles in projects that use `incremental` and `watch` mode assume that changes within a file will only affect files directly depending on it.",
57
+ "markdownDescription": "Have recompiles in projects that use `incremental` and `watch` mode assume that changes within a file will only affect files directly depending on it.\n\nSee more: https://www.typescriptlang.org/tsconfig#assumeChangesOnlyAffectDirectDependencies",
58
+ "type": [
59
+ "boolean",
60
+ "null"
61
+ ]
62
+ },
63
+ "dry": {
64
+ "default": false,
65
+ "description": "~",
66
+ "type": [
67
+ "boolean",
68
+ "null"
69
+ ]
70
+ },
71
+ "force": {
72
+ "default": false,
73
+ "description": "Build all projects, including those that appear to be up to date",
74
+ "markdownDescription": "Build all projects, including those that appear to be up to date\n\nSee more: https://www.typescriptlang.org/tsconfig#force",
75
+ "type": [
76
+ "boolean",
77
+ "null"
78
+ ]
79
+ },
80
+ "incremental": {
81
+ "default": false,
82
+ "description": "Save .tsbuildinfo files to allow for incremental compilation of projects.",
83
+ "markdownDescription": "Save .tsbuildinfo files to allow for incremental compilation of projects.\n\nSee more: https://www.typescriptlang.org/tsconfig#incremental",
84
+ "type": [
85
+ "boolean",
86
+ "null"
87
+ ]
88
+ },
89
+ "traceResolution": {
90
+ "default": false,
91
+ "description": "Log paths used during the `moduleResolution` process.",
92
+ "markdownDescription": "Log paths used during the `moduleResolution` process.\n\nSee more: https://www.typescriptlang.org/tsconfig#traceResolution",
93
+ "type": [
94
+ "boolean",
95
+ "null"
96
+ ]
97
+ },
98
+ "verbose": {
99
+ "default": false,
100
+ "description": "Enable verbose logging",
101
+ "markdownDescription": "Enable verbose logging\n\nSee more: https://www.typescriptlang.org/tsconfig#verbose",
102
+ "type": [
103
+ "boolean",
104
+ "null"
105
+ ]
106
+ }
107
+ }
108
+ }
109
+ }
110
+ },
111
+ "compileOnSaveDefinition": {
112
+ "properties": {
113
+ "compileOnSave": {
114
+ "description": "Enable Compile-on-Save for this project.",
115
+ "type": [
116
+ "boolean",
117
+ "null"
118
+ ]
119
+ }
120
+ }
121
+ },
122
+ "compilerOptionsDefinition": {
123
+ "properties": {
124
+ "compilerOptions": {
125
+ "description": "Instructs the TypeScript compiler how to compile .ts files.",
126
+ "properties": {
127
+ "allowArbitraryExtensions": {
128
+ "description": "Enable importing files with any extension, provided a declaration file is present.",
129
+ "markdownDescription": "Enable importing files with any extension, provided a declaration file is present.\n\nSee more: https://www.typescriptlang.org/tsconfig#allowArbitraryExtensions",
130
+ "type": [
131
+ "boolean",
132
+ "null"
133
+ ]
134
+ },
135
+ "allowImportingTsExtensions": {
136
+ "description": "Allow imports to include TypeScript file extensions. Requires `--moduleResolution bundler` and either `--noEmit` or `--emitDeclarationOnly` to be set.",
137
+ "markdownDescription": "Allow imports to include TypeScript file extensions. Requires `--moduleResolution bundler` and either `--noEmit` or `--emitDeclarationOnly` to be set.\n\nSee more: https://www.typescriptlang.org/tsconfig#allowImportingTsExtensions",
138
+ "type": [
139
+ "boolean",
140
+ "null"
141
+ ]
142
+ },
143
+ "allowJs": {
144
+ "default": false,
145
+ "description": "Allow JavaScript files to be a part of your program. Use the `checkJs` option to get errors from these files.",
146
+ "markdownDescription": "Allow JavaScript files to be a part of your program. Use the `checkJs` option to get errors from these files.\n\nSee more: https://www.typescriptlang.org/tsconfig#allowJs",
147
+ "type": [
148
+ "boolean",
149
+ "null"
150
+ ]
151
+ },
152
+ "allowSyntheticDefaultImports": {
153
+ "description": "Allow `import x from y` when a module doesn't have a default export.",
154
+ "markdownDescription": "Allow `import x from y` when a module doesn't have a default export.\n\nSee more: https://www.typescriptlang.org/tsconfig#allowSyntheticDefaultImports",
155
+ "type": [
156
+ "boolean",
157
+ "null"
158
+ ]
159
+ },
160
+ "allowUmdGlobalAccess": {
161
+ "default": false,
162
+ "description": "Allow accessing UMD globals from modules.",
163
+ "markdownDescription": "Allow accessing UMD globals from modules.\n\nSee more: https://www.typescriptlang.org/tsconfig#allowUmdGlobalAccess",
164
+ "type": [
165
+ "boolean",
166
+ "null"
167
+ ]
168
+ },
169
+ "allowUnreachableCode": {
170
+ "description": "Disable error reporting for unreachable code.",
171
+ "markdownDescription": "Disable error reporting for unreachable code.\n\nSee more: https://www.typescriptlang.org/tsconfig#allowUnreachableCode",
172
+ "type": [
173
+ "boolean",
174
+ "null"
175
+ ]
176
+ },
177
+ "allowUnusedLabels": {
178
+ "description": "Disable error reporting for unused labels.",
179
+ "markdownDescription": "Disable error reporting for unused labels.\n\nSee more: https://www.typescriptlang.org/tsconfig#allowUnusedLabels",
180
+ "type": [
181
+ "boolean",
182
+ "null"
183
+ ]
184
+ },
185
+ "alwaysStrict": {
186
+ "description": "Ensure `use strict` is always emitted.",
187
+ "markdownDescription": "Ensure `use strict` is always emitted.\n\nSee more: https://www.typescriptlang.org/tsconfig#alwaysStrict",
188
+ "type": [
189
+ "boolean",
190
+ "null"
191
+ ]
192
+ },
193
+ "assumeChangesOnlyAffectDirectDependencies": {
194
+ "description": "Have recompiles in projects that use `incremental` and `watch` mode assume that changes within a file will only affect files directly depending on it.",
195
+ "markdownDescription": "Have recompiles in projects that use `incremental` and `watch` mode assume that changes within a file will only affect files directly depending on it.\n\nSee more: https://www.typescriptlang.org/tsconfig#assumeChangesOnlyAffectDirectDependencies",
196
+ "type": [
197
+ "boolean",
198
+ "null"
199
+ ]
200
+ },
201
+ "baseUrl": {
202
+ "description": "Specify the base directory to resolve non-relative module names.",
203
+ "markdownDescription": "Specify the base directory to resolve non-relative module names.\n\nSee more: https://www.typescriptlang.org/tsconfig#baseUrl",
204
+ "type": [
205
+ "string",
206
+ "null"
207
+ ]
208
+ },
209
+ "charset": {
210
+ "description": "No longer supported. In early versions, manually set the text encoding for reading files.",
211
+ "markdownDescription": "No longer supported. In early versions, manually set the text encoding for reading files.\n\nSee more: https://www.typescriptlang.org/tsconfig#charset",
212
+ "type": [
213
+ "string",
214
+ "null"
215
+ ]
216
+ },
217
+ "checkJs": {
218
+ "default": false,
219
+ "description": "Enable error reporting in type-checked JavaScript files.",
220
+ "markdownDescription": "Enable error reporting in type-checked JavaScript files.\n\nSee more: https://www.typescriptlang.org/tsconfig#checkJs",
221
+ "type": [
222
+ "boolean",
223
+ "null"
224
+ ]
225
+ },
226
+ "composite": {
227
+ "default": true,
228
+ "description": "Enable constraints that allow a TypeScript project to be used with project references.",
229
+ "markdownDescription": "Enable constraints that allow a TypeScript project to be used with project references.\n\nSee more: https://www.typescriptlang.org/tsconfig#composite",
230
+ "type": [
231
+ "boolean",
232
+ "null"
233
+ ]
234
+ },
235
+ "customConditions": {
236
+ "description": "Conditions to set in addition to the resolver-specific defaults when resolving imports.",
237
+ "items": {
238
+ "type": "string"
239
+ },
240
+ "markdownDescription": "Conditions to set in addition to the resolver-specific defaults when resolving imports.\n\nSee more: https://www.typescriptlang.org/tsconfig#customConditions",
241
+ "type": [
242
+ "array",
243
+ "null"
244
+ ],
245
+ "uniqueItems": true
246
+ },
247
+ "declaration": {
248
+ "default": false,
249
+ "description": "Generate .d.ts files from TypeScript and JavaScript files in your project.",
250
+ "markdownDescription": "Generate .d.ts files from TypeScript and JavaScript files in your project.\n\nSee more: https://www.typescriptlang.org/tsconfig#declaration",
251
+ "type": [
252
+ "boolean",
253
+ "null"
254
+ ]
255
+ },
256
+ "declarationDir": {
257
+ "description": "Specify the output directory for generated declaration files.",
258
+ "markdownDescription": "Specify the output directory for generated declaration files.\n\nSee more: https://www.typescriptlang.org/tsconfig#declarationDir",
259
+ "type": [
260
+ "string",
261
+ "null"
262
+ ]
263
+ },
264
+ "declarationMap": {
265
+ "default": false,
266
+ "description": "Create sourcemaps for d.ts files.",
267
+ "markdownDescription": "Create sourcemaps for d.ts files.\n\nSee more: https://www.typescriptlang.org/tsconfig#declarationMap",
268
+ "type": [
269
+ "boolean",
270
+ "null"
271
+ ]
272
+ },
273
+ "diagnostics": {
274
+ "description": "Output compiler performance information after building.",
275
+ "markdownDescription": "Output compiler performance information after building.\n\nSee more: https://www.typescriptlang.org/tsconfig#diagnostics",
276
+ "type": [
277
+ "boolean",
278
+ "null"
279
+ ]
280
+ },
281
+ "disableReferencedProjectLoad": {
282
+ "description": "Reduce the number of projects loaded automatically by TypeScript.",
283
+ "markdownDescription": "Reduce the number of projects loaded automatically by TypeScript.\n\nSee more: https://www.typescriptlang.org/tsconfig#disableReferencedProjectLoad",
284
+ "type": [
285
+ "boolean",
286
+ "null"
287
+ ]
288
+ },
289
+ "disableSizeLimit": {
290
+ "default": false,
291
+ "description": "Remove the 20mb cap on total source code size for JavaScript files in the TypeScript language server.",
292
+ "markdownDescription": "Remove the 20mb cap on total source code size for JavaScript files in the TypeScript language server.\n\nSee more: https://www.typescriptlang.org/tsconfig#disableSizeLimit",
293
+ "type": [
294
+ "boolean",
295
+ "null"
296
+ ]
297
+ },
298
+ "disableSolutionSearching": {
299
+ "description": "Opt a project out of multi-project reference checking when editing.",
300
+ "markdownDescription": "Opt a project out of multi-project reference checking when editing.\n\nSee more: https://www.typescriptlang.org/tsconfig#disableSolutionSearching",
301
+ "type": [
302
+ "boolean",
303
+ "null"
304
+ ]
305
+ },
306
+ "disableSourceOfProjectReferenceRedirect": {
307
+ "description": "Disable preferring source files instead of declaration files when referencing composite projects.",
308
+ "markdownDescription": "Disable preferring source files instead of declaration files when referencing composite projects.\n\nSee more: https://www.typescriptlang.org/tsconfig#disableSourceOfProjectReferenceRedirect",
309
+ "type": [
310
+ "boolean",
311
+ "null"
312
+ ]
313
+ },
314
+ "downlevelIteration": {
315
+ "default": false,
316
+ "description": "Emit more compliant, but verbose and less performant JavaScript for iteration.",
317
+ "markdownDescription": "Emit more compliant, but verbose and less performant JavaScript for iteration.\n\nSee more: https://www.typescriptlang.org/tsconfig#downlevelIteration",
318
+ "type": [
319
+ "boolean",
320
+ "null"
321
+ ]
322
+ },
323
+ "emitBOM": {
324
+ "default": false,
325
+ "description": "Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files.",
326
+ "markdownDescription": "Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files.\n\nSee more: https://www.typescriptlang.org/tsconfig#emitBOM",
327
+ "type": [
328
+ "boolean",
329
+ "null"
330
+ ]
331
+ },
332
+ "emitDeclarationOnly": {
333
+ "default": false,
334
+ "description": "Only output d.ts files and not JavaScript files.",
335
+ "markdownDescription": "Only output d.ts files and not JavaScript files.\n\nSee more: https://www.typescriptlang.org/tsconfig#emitDeclarationOnly",
336
+ "type": [
337
+ "boolean",
338
+ "null"
339
+ ]
340
+ },
341
+ "emitDecoratorMetadata": {
342
+ "description": "Emit design-type metadata for decorated declarations in source files.",
343
+ "markdownDescription": "Emit design-type metadata for decorated declarations in source files.\n\nSee more: https://www.typescriptlang.org/tsconfig#emitDecoratorMetadata",
344
+ "type": [
345
+ "boolean",
346
+ "null"
347
+ ]
348
+ },
349
+ "erasableSyntaxOnly": {
350
+ "default": false,
351
+ "description": "Do not allow runtime constructs that are not part of ECMAScript.",
352
+ "markdownDescription": "Do not allow runtime constructs that are not part of ECMAScript.\n\nSee more: https://www.typescriptlang.org/tsconfig#erasableSyntaxOnly",
353
+ "type": [
354
+ "boolean",
355
+ "null"
356
+ ]
357
+ },
358
+ "esModuleInterop": {
359
+ "default": false,
360
+ "description": "Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility.",
361
+ "markdownDescription": "Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility.\n\nSee more: https://www.typescriptlang.org/tsconfig#esModuleInterop",
362
+ "type": [
363
+ "boolean",
364
+ "null"
365
+ ]
366
+ },
367
+ "exactOptionalPropertyTypes": {
368
+ "default": false,
369
+ "description": "Interpret optional property types as written, rather than adding `undefined`.",
370
+ "markdownDescription": "Interpret optional property types as written, rather than adding `undefined`.\n\nSee more: https://www.typescriptlang.org/tsconfig#exactOptionalPropertyTypes",
371
+ "type": [
372
+ "boolean",
373
+ "null"
374
+ ]
375
+ },
376
+ "experimentalDecorators": {
377
+ "description": "Enable experimental support for legacy experimental decorators.",
378
+ "markdownDescription": "Enable experimental support for legacy experimental decorators.\n\nSee more: https://www.typescriptlang.org/tsconfig#experimentalDecorators",
379
+ "type": [
380
+ "boolean",
381
+ "null"
382
+ ]
383
+ },
384
+ "extendedDiagnostics": {
385
+ "default": false,
386
+ "description": "Output more detailed compiler performance information after building.",
387
+ "markdownDescription": "Output more detailed compiler performance information after building.\n\nSee more: https://www.typescriptlang.org/tsconfig#extendedDiagnostics",
388
+ "type": [
389
+ "boolean",
390
+ "null"
391
+ ]
392
+ },
393
+ "fallbackPolling": {
394
+ "description": "Specify the polling strategy to use when the system runs out of or doesn't support native file watchers. Requires TypeScript version 3.8 or later.",
395
+ "enum": [
396
+ "fixedPollingInterval",
397
+ "priorityPollingInterval",
398
+ "dynamicPriorityPolling",
399
+ "fixedInterval",
400
+ "priorityInterval",
401
+ "dynamicPriority",
402
+ "fixedChunkSize"
403
+ ]
404
+ },
405
+ "forceConsistentCasingInFileNames": {
406
+ "default": true,
407
+ "description": "Ensure that casing is correct in imports.",
408
+ "markdownDescription": "Ensure that casing is correct in imports.\n\nSee more: https://www.typescriptlang.org/tsconfig#forceConsistentCasingInFileNames",
409
+ "type": [
410
+ "boolean",
411
+ "null"
412
+ ]
413
+ },
414
+ "generateCpuProfile": {
415
+ "default": "profile.cpuprofile",
416
+ "description": "Emit a v8 CPU profile of the compiler run for debugging.",
417
+ "markdownDescription": "Emit a v8 CPU profile of the compiler run for debugging.\n\nSee more: https://www.typescriptlang.org/tsconfig#generateCpuProfile",
418
+ "type": [
419
+ "string",
420
+ "null"
421
+ ]
422
+ },
423
+ "importHelpers": {
424
+ "default": false,
425
+ "description": "Allow importing helper functions from tslib once per project, instead of including them per-file.",
426
+ "markdownDescription": "Allow importing helper functions from tslib once per project, instead of including them per-file.\n\nSee more: https://www.typescriptlang.org/tsconfig#importHelpers",
427
+ "type": [
428
+ "boolean",
429
+ "null"
430
+ ]
431
+ },
432
+ "importsNotUsedAsValues": {
433
+ "default": "remove",
434
+ "description": "Specify emit/checking behavior for imports that are only used for types.",
435
+ "enum": [
436
+ "remove",
437
+ "preserve",
438
+ "error"
439
+ ],
440
+ "markdownDescription": "Specify emit/checking behavior for imports that are only used for types.\n\nSee more: https://www.typescriptlang.org/tsconfig#importsNotUsedAsValues"
441
+ },
442
+ "incremental": {
443
+ "description": "Enable incremental compilation. Requires TypeScript version 3.4 or later.",
444
+ "type": [
445
+ "boolean",
446
+ "null"
447
+ ]
448
+ },
449
+ "inlineSourceMap": {
450
+ "default": false,
451
+ "description": "Include sourcemap files inside the emitted JavaScript.",
452
+ "markdownDescription": "Include sourcemap files inside the emitted JavaScript.\n\nSee more: https://www.typescriptlang.org/tsconfig#inlineSourceMap",
453
+ "type": [
454
+ "boolean",
455
+ "null"
456
+ ]
457
+ },
458
+ "inlineSources": {
459
+ "default": false,
460
+ "description": "Include source code in the sourcemaps inside the emitted JavaScript.",
461
+ "markdownDescription": "Include source code in the sourcemaps inside the emitted JavaScript.\n\nSee more: https://www.typescriptlang.org/tsconfig#inlineSources",
462
+ "type": [
463
+ "boolean",
464
+ "null"
465
+ ]
466
+ },
467
+ "isolatedDeclarations": {
468
+ "default": false,
469
+ "description": "Require sufficient annotation on exports so other tools can trivially generate declaration files.",
470
+ "markdownDescription": "Require sufficient annotation on exports so other tools can trivially generate declaration files.\n\nSee more: https://www.typescriptlang.org/tsconfig#isolatedDeclarations",
471
+ "type": [
472
+ "boolean",
473
+ "null"
474
+ ]
475
+ },
476
+ "isolatedModules": {
477
+ "default": false,
478
+ "description": "Ensure that each file can be safely transpiled without relying on other imports.",
479
+ "markdownDescription": "Ensure that each file can be safely transpiled without relying on other imports.\n\nSee more: https://www.typescriptlang.org/tsconfig#isolatedModules",
480
+ "type": [
481
+ "boolean",
482
+ "null"
483
+ ]
484
+ },
485
+ "jsx": {
486
+ "description": "Specify what JSX code is generated.",
487
+ "enum": [
488
+ "preserve",
489
+ "react",
490
+ "react-jsx",
491
+ "react-jsxdev",
492
+ "react-native"
493
+ ],
494
+ "markdownDescription": "Specify what JSX code is generated.\n\nSee more: https://www.typescriptlang.org/tsconfig#jsx"
495
+ },
496
+ "jsxFactory": {
497
+ "default": "React.createElement",
498
+ "description": "Specify the JSX factory function used when targeting React JSX emit, e.g. `React.createElement` or `h`.",
499
+ "markdownDescription": "Specify the JSX factory function used when targeting React JSX emit, e.g. `React.createElement` or `h`.\n\nSee more: https://www.typescriptlang.org/tsconfig#jsxFactory",
500
+ "type": [
501
+ "string",
502
+ "null"
503
+ ]
504
+ },
505
+ "jsxFragmentFactory": {
506
+ "default": "React.Fragment",
507
+ "description": "Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. `React.Fragment` or `Fragment`.",
508
+ "markdownDescription": "Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. `React.Fragment` or `Fragment`.\n\nSee more: https://www.typescriptlang.org/tsconfig#jsxFragmentFactory",
509
+ "type": [
510
+ "string",
511
+ "null"
512
+ ]
513
+ },
514
+ "jsxImportSource": {
515
+ "default": "react",
516
+ "description": "Specify module specifier used to import the JSX factory functions when using `jsx: react-jsx*`.",
517
+ "markdownDescription": "Specify module specifier used to import the JSX factory functions when using `jsx: react-jsx*`.\n\nSee more: https://www.typescriptlang.org/tsconfig#jsxImportSource",
518
+ "type": [
519
+ "string",
520
+ "null"
521
+ ]
522
+ },
523
+ "keyofStringsOnly": {
524
+ "default": false,
525
+ "description": "Make keyof only return strings instead of string, numbers or symbols. Legacy option.",
526
+ "markdownDescription": "Make keyof only return strings instead of string, numbers or symbols. Legacy option.\n\nSee more: https://www.typescriptlang.org/tsconfig#keyofStringsOnly",
527
+ "type": [
528
+ "boolean",
529
+ "null"
530
+ ]
531
+ },
532
+ "lib": {
533
+ "description": "Specify a set of bundled library declaration files that describe the target runtime environment.",
534
+ "items": {
535
+ "anyOf": [
536
+ {
537
+ "enum": [
538
+ "ES5",
539
+ "ES6",
540
+ "ES2015",
541
+ "ES2015.Collection",
542
+ "ES2015.Core",
543
+ "ES2015.Generator",
544
+ "ES2015.Iterable",
545
+ "ES2015.Promise",
546
+ "ES2015.Proxy",
547
+ "ES2015.Reflect",
548
+ "ES2015.Symbol.WellKnown",
549
+ "ES2015.Symbol",
550
+ "ES2016",
551
+ "ES2016.Array.Include",
552
+ "ES2017",
553
+ "ES2017.Intl",
554
+ "ES2017.Object",
555
+ "ES2017.SharedMemory",
556
+ "ES2017.String",
557
+ "ES2017.TypedArrays",
558
+ "ES2017.ArrayBuffer",
559
+ "ES2018",
560
+ "ES2018.AsyncGenerator",
561
+ "ES2018.AsyncIterable",
562
+ "ES2018.Intl",
563
+ "ES2018.Promise",
564
+ "ES2018.Regexp",
565
+ "ES2019",
566
+ "ES2019.Array",
567
+ "ES2019.Intl",
568
+ "ES2019.Object",
569
+ "ES2019.String",
570
+ "ES2019.Symbol",
571
+ "ES2020",
572
+ "ES2020.BigInt",
573
+ "ES2020.Promise",
574
+ "ES2020.String",
575
+ "ES2020.Symbol.WellKnown",
576
+ "ESNext",
577
+ "ESNext.Array",
578
+ "ESNext.AsyncIterable",
579
+ "ESNext.BigInt",
580
+ "ESNext.Collection",
581
+ "ESNext.Intl",
582
+ "ESNext.Iterator",
583
+ "ESNext.Object",
584
+ "ESNext.Promise",
585
+ "ESNext.Regexp",
586
+ "ESNext.String",
587
+ "ESNext.Symbol",
588
+ "DOM",
589
+ "DOM.AsyncIterable",
590
+ "DOM.Iterable",
591
+ "ScriptHost",
592
+ "WebWorker",
593
+ "WebWorker.AsyncIterable",
594
+ "WebWorker.ImportScripts",
595
+ "Webworker.Iterable",
596
+ "ES7",
597
+ "ES2021",
598
+ "ES2020.SharedMemory",
599
+ "ES2020.Intl",
600
+ "ES2020.Date",
601
+ "ES2020.Number",
602
+ "ES2021.Promise",
603
+ "ES2021.String",
604
+ "ES2021.WeakRef",
605
+ "ESNext.WeakRef",
606
+ "ES2021.Intl",
607
+ "ES2022",
608
+ "ES2022.Array",
609
+ "ES2022.Error",
610
+ "ES2022.Intl",
611
+ "ES2022.Object",
612
+ "ES2022.String",
613
+ "ES2022.SharedMemory",
614
+ "ES2022.RegExp",
615
+ "ES2023",
616
+ "ES2023.Array",
617
+ "ES2024",
618
+ "ES2024.ArrayBuffer",
619
+ "ES2024.Collection",
620
+ "ES2024.Object",
621
+ "ES2024.Promise",
622
+ "ES2024.Regexp",
623
+ "ES2024.SharedMemory",
624
+ "ES2024.String",
625
+ "Decorators",
626
+ "Decorators.Legacy",
627
+ "ES2017.Date",
628
+ "ES2023.Collection",
629
+ "ESNext.Decorators",
630
+ "ESNext.Disposable",
631
+ "ESNext.Error",
632
+ "ESNext.Sharedmemory"
633
+ ]
634
+ },
635
+ {
636
+ "pattern": "^[Ee][Ss]5|[Ee][Ss]6|[Ee][Ss]7$"
637
+ },
638
+ {
639
+ "pattern": "^[Ee][Ss]2015(\\.([Cc][Oo][Ll][Ll][Ee][Cc][Tt][Ii][Oo][Nn]|[Cc][Oo][Rr][Ee]|[Gg][Ee][Nn][Ee][Rr][Aa][Tt][Oo][Rr]|[Ii][Tt][Ee][Rr][Aa][Bb][Ll][Ee]|[Pp][Rr][Oo][Mm][Ii][Ss][Ee]|[Pp][Rr][Oo][Xx][Yy]|[Rr][Ee][Ff][Ll][Ee][Cc][Tt]|[Ss][Yy][Mm][Bb][Oo][Ll]\\.[Ww][Ee][Ll][Ll][Kk][Nn][Oo][Ww][Nn]|[Ss][Yy][Mm][Bb][Oo][Ll]))?$"
640
+ },
641
+ {
642
+ "pattern": "^[Ee][Ss]2016(\\.[Aa][Rr][Rr][Aa][Yy]\\.[Ii][Nn][Cc][Ll][Uu][Dd][Ee])?$"
643
+ },
644
+ {
645
+ "pattern": "^[Ee][Ss]2017(\\.([Ii][Nn][Tt][Ll]|[Oo][Bb][Jj][Ee][Cc][Tt]|[Ss][Hh][Aa][Rr][Ee][Dd][Mm][Ee][Mm][Oo][Rr][Yy]|[Ss][Tt][Rr][Ii][Nn][Gg]|[Tt][Yy][Pp][Ee][Dd][Aa][Rr][Rr][Aa][Yy][Ss]|[Dd][Aa][Tt][Ee]|[Aa][Rr][Rr][Aa][Yy][Bb][Uu][Ff][Ff][Ee][Rr]))?$"
646
+ },
647
+ {
648
+ "pattern": "^[Ee][Ss]2018(\\.([Aa][Ss][Yy][Nn][Cc][Gg][Ee][Nn][Ee][Rr][Aa][Tt][Oo][Rr]|[Aa][Ss][Yy][Nn][Cc][Ii][Tt][Ee][Rr][Aa][Bb][Ll][Ee]|[Ii][Nn][Tt][Ll]|[Pp][Rr][Oo][Mm][Ii][Ss][Ee]|[Rr][Ee][Gg][Ee][Xx][Pp]))?$"
649
+ },
650
+ {
651
+ "pattern": "^[Ee][Ss]2019(\\.([Aa][Rr][Rr][Aa][Yy]|[Ii][Nn][Tt][Ll]|[Oo][Bb][Jj][Ee][Cc][Tt]|[Ss][Tt][Rr][Ii][Nn][Gg]|[Ss][Yy][Mm][Bb][Oo][Ll]))?$"
652
+ },
653
+ {
654
+ "pattern": "^[Ee][Ss]2020(\\.([Bb][Ii][Gg][Ii][Nn][Tt]|[Pp][Rr][Oo][Mm][Ii][Ss][Ee]|[Ss][Tt][Rr][Ii][Nn][Gg]|[Ss][Yy][Mm][Bb][Oo][Ll]\\.[Ww][Ee][Ll][Ll][Kk][Nn][Oo][Ww][Nn]|[Ss][Hh][Aa][Rr][Ee][Dd][Mm][Ee][Mm][Oo][Rr][Yy]|[Ii][Nn][Tt][Ll]|[Dd][Aa][Tt][Ee]|[Nn][Uu][Mm][Bb][Ee][Rr]))?$"
655
+ },
656
+ {
657
+ "pattern": "^[Ee][Ss]2021(\\.([Ii][Nn][Tt][Ll]|[Pp][Rr][Oo][Mm][Ii][Ss][Ee]|[Ss][Tt][Rr][Ii][Nn][Gg]|[Ww][Ee][Aa][Kk][Rr][Ee][Ff]))?$"
658
+ },
659
+ {
660
+ "pattern": "^[Ee][Ss]2022(\\.([Aa][Rr][Rr][Aa][Yy]|[Ee][Rr][Rr][Oo][Rr]|[Ii][Nn][Tt][Ll]|[Oo][Bb][Jj][Ee][Cc][Tt]|[Ss][Tt][Rr][Ii][Nn][Gg]|[Ss][Hh][Aa][Rr][Ee][Dd][Mm][Ee][Mm][Oo][Rr][Yy]|[Rr][Ee][Gg][Ee][Xx][Pp]))?$"
661
+ },
662
+ {
663
+ "pattern": "^[Ee][Ss]2023(\\.([Aa][Rr][Rr][Aa][Yy]|[Cc][Oo][Ll][Ll][Ee][Cc][Tt][Ii][Oo][Nn]))?$"
664
+ },
665
+ {
666
+ "pattern": "^[Ee][Ss]2024(\\.([Aa][Rr][Rr][Aa][Yy][Bb][Uu][Ff][Ff][Ee][Rr]|[Cc][Oo][Ll][Ll][Ee][Cc][Tt][Ii][Oo][Nn]|[Oo][Bb][Jj][Ee][Cc][Tt]|[Pp][Rr][Oo][Mm][Ii][Ss][Ee]|[Rr][Ee][Gg][Ee][Xx][Pp]|[Ss][Hh][Aa][Rr][Ee][Dd][Mm][Ee][Mm][Oo][Rr][Yy]|[Ss][Tt][Rr][Ii][Nn][Gg]))?$"
667
+ },
668
+ {
669
+ "pattern": "^[Ee][Ss][Nn][Ee][Xx][Tt](\\.([Aa][Rr][Rr][Aa][Yy]|[Aa][Ss][Yy][Nn][Cc][Ii][Tt][Ee][Rr][Aa][Bb][Ll][Ee]|[Bb][Ii][Gg][Ii][Nn][Tt]|[Ii][Nn][Tt][Ll]|[Pp][Rr][Oo][Mm][Ii][Ss][Ee]|[Ss][Tt][Rr][Ii][Nn][Gg]|[Ss][Yy][Mm][Bb][Oo][Ll]|[Ww][Ee][Aa][Kk][Rr][Ee][Ff]|[Dd][Ee][Cc][Oo][Rr][Aa][Tt][Oo][Rr][Ss]|[Dd][Ii][Ss][Pp][Oo][Ss][Aa][Bb][Ll][Ee]))?$"
670
+ },
671
+ {
672
+ "pattern": "^[Dd][Oo][Mm](\\.([Aa][Ss][Yy][Nn][Cc])?[Ii][Tt][Ee][Rr][Aa][Bb][Ll][Ee])?$"
673
+ },
674
+ {
675
+ "pattern": "^[Ss][Cc][Rr][Ii][Pp][Tt][Hh][Oo][Ss][Tt]$"
676
+ },
677
+ {
678
+ "pattern": "^[Ww][Ee][Bb][Ww][Oo][Rr][Kk][Ee][Rr](\\.([Ii][Mm][Pp][Oo][Rr][Tt][Ss][Cc][Rr][Ii][Pp][Tt][Ss]|([Aa][Ss][Yy][Nn][Cc])?[Ii][Tt][Ee][Rr][Aa][Bb][Ll][Ee]))?$"
679
+ },
680
+ {
681
+ "pattern": "^[Dd][Ee][Cc][Oo][Rr][Aa][Tt][Oo][Rr][Ss](\\.([Ll][Ee][Gg][Aa][Cc][Yy]))?$"
682
+ }
683
+ ],
684
+ "type": "string"
685
+ },
686
+ "markdownDescription": "Specify a set of bundled library declaration files that describe the target runtime environment.\n\nSee more: https://www.typescriptlang.org/tsconfig#lib",
687
+ "type": [
688
+ "array",
689
+ "null"
690
+ ],
691
+ "uniqueItems": true
692
+ },
693
+ "libReplacement": {
694
+ "default": true,
695
+ "description": "Enable lib replacement.",
696
+ "markdownDescription": "Enable lib replacement.\n\nSee more: https://www.typescriptlang.org/tsconfig#libReplacement",
697
+ "type": [
698
+ "boolean",
699
+ "null"
700
+ ]
701
+ },
702
+ "listEmittedFiles": {
703
+ "default": false,
704
+ "description": "Print the names of emitted files after a compilation.",
705
+ "markdownDescription": "Print the names of emitted files after a compilation.\n\nSee more: https://www.typescriptlang.org/tsconfig#listEmittedFiles",
706
+ "type": [
707
+ "boolean",
708
+ "null"
709
+ ]
710
+ },
711
+ "listFiles": {
712
+ "default": false,
713
+ "description": "Print all of the files read during the compilation.",
714
+ "markdownDescription": "Print all of the files read during the compilation.\n\nSee more: https://www.typescriptlang.org/tsconfig#listFiles",
715
+ "type": [
716
+ "boolean",
717
+ "null"
718
+ ]
719
+ },
720
+ "listFilesOnly": {
721
+ "description": "Print names of files that are part of the compilation and then stop processing.",
722
+ "type": [
723
+ "boolean",
724
+ "null"
725
+ ]
726
+ },
727
+ "mapRoot": {
728
+ "description": "Specify the location where debugger should locate map files instead of generated locations.",
729
+ "markdownDescription": "Specify the location where debugger should locate map files instead of generated locations.\n\nSee more: https://www.typescriptlang.org/tsconfig#mapRoot",
730
+ "type": [
731
+ "string",
732
+ "null"
733
+ ]
734
+ },
735
+ "maxNodeModuleJsDepth": {
736
+ "default": 0,
737
+ "description": "Specify the maximum folder depth used for checking JavaScript files from `node_modules`. Only applicable with `allowJs`.",
738
+ "markdownDescription": "Specify the maximum folder depth used for checking JavaScript files from `node_modules`. Only applicable with `allowJs`.\n\nSee more: https://www.typescriptlang.org/tsconfig#maxNodeModuleJsDepth",
739
+ "type": [
740
+ "number",
741
+ "null"
742
+ ]
743
+ },
744
+ "module": {
745
+ "anyOf": [
746
+ {
747
+ "enum": [
748
+ "commonjs",
749
+ "amd",
750
+ "system",
751
+ "umd",
752
+ "es6",
753
+ "es2015",
754
+ "es2020",
755
+ "esnext",
756
+ "none",
757
+ "es2022",
758
+ "node16",
759
+ "node18",
760
+ "node20",
761
+ "nodenext",
762
+ "preserve"
763
+ ]
764
+ },
765
+ {
766
+ "pattern": "^([Cc][Oo][Mm][Mm][Oo][Nn][Jj][Ss]|[AaUu][Mm][Dd]|[Ss][Yy][Ss][Tt][Ee][Mm]|[Ee][Ss]([356]|20(1[567]|2[02])|[Nn][Ee][Xx][Tt])|[Nn][Oo][dD][Ee](1[68]|20)|[Nn][Oo][Dd][Ee][Nn][Ee][Xx][Tt]|[Nn][Oo][Nn][Ee]|[Pp][Rr][Ee][Ss][Ee][Rr][Vv][Ee])$"
767
+ }
768
+ ],
769
+ "description": "Specify what module code is generated.",
770
+ "markdownDescription": "Specify what module code is generated.\n\nSee more: https://www.typescriptlang.org/tsconfig#module",
771
+ "type": [
772
+ "string",
773
+ "null"
774
+ ]
775
+ },
776
+ "moduleDetection": {
777
+ "description": "Control what method is used to detect module-format JS files.",
778
+ "enum": [
779
+ "auto",
780
+ "legacy",
781
+ "force"
782
+ ],
783
+ "markdownDescription": "Control what method is used to detect module-format JS files.\n\nSee more: https://www.typescriptlang.org/tsconfig#moduleDetection"
784
+ },
785
+ "moduleResolution": {
786
+ "anyOf": [
787
+ {
788
+ "enum": [
789
+ "classic",
790
+ "node",
791
+ "node10",
792
+ "node16",
793
+ "nodenext",
794
+ "bundler"
795
+ ],
796
+ "markdownEnumDescriptions": [
797
+ "It’s recommended to use `\"node16\"` instead",
798
+ "Deprecated, use `\"node10\"` in TypeScript 5.0+ instead",
799
+ "It’s recommended to use `\"node16\"` instead",
800
+ "This is the recommended setting for libraries and Node.js applications",
801
+ "This is the recommended setting for libraries and Node.js applications",
802
+ "This is the recommended setting in TypeScript 5.0+ for applications that use a bundler"
803
+ ]
804
+ },
805
+ {
806
+ "pattern": "^(([Nn]ode)|([Nn]ode1[06])|([Nn]ode[Nn]ext)|([Cc]lassic)|([Bb]undler))$"
807
+ }
808
+ ],
809
+ "description": "Specify how TypeScript looks up a file from a given module specifier.",
810
+ "markdownDescription": "Specify how TypeScript looks up a file from a given module specifier.\n\nSee more: https://www.typescriptlang.org/tsconfig#moduleResolution",
811
+ "type": [
812
+ "string",
813
+ "null"
814
+ ]
815
+ },
816
+ "moduleSuffixes": {
817
+ "description": "List of file name suffixes to search when resolving a module.",
818
+ "items": {
819
+ "type": "string"
820
+ },
821
+ "markdownDescription": "List of file name suffixes to search when resolving a module.\n\nSee more: https://www.typescriptlang.org/tsconfig#moduleSuffixes",
822
+ "type": [
823
+ "array",
824
+ "null"
825
+ ],
826
+ "uniqueItems": true
827
+ },
828
+ "newLine": {
829
+ "anyOf": [
830
+ {
831
+ "enum": [
832
+ "crlf",
833
+ "lf"
834
+ ]
835
+ },
836
+ {
837
+ "pattern": "^(CRLF|LF|crlf|lf)$"
838
+ }
839
+ ],
840
+ "default": "lf",
841
+ "description": "Set the newline character for emitting files.",
842
+ "markdownDescription": "Set the newline character for emitting files.\n\nSee more: https://www.typescriptlang.org/tsconfig#newLine",
843
+ "type": [
844
+ "string",
845
+ "null"
846
+ ]
847
+ },
848
+ "noCheck": {
849
+ "default": false,
850
+ "description": "Disable full type checking (only critical parse and emit errors will be reported).",
851
+ "markdownDescription": "Disable full type checking (only critical parse and emit errors will be reported).\n\nSee more: https://www.typescriptlang.org/tsconfig#noCheck",
852
+ "type": [
853
+ "boolean",
854
+ "null"
855
+ ]
856
+ },
857
+ "noEmit": {
858
+ "default": false,
859
+ "description": "Disable emitting files from a compilation.",
860
+ "markdownDescription": "Disable emitting files from a compilation.\n\nSee more: https://www.typescriptlang.org/tsconfig#noEmit",
861
+ "type": [
862
+ "boolean",
863
+ "null"
864
+ ]
865
+ },
866
+ "noEmitHelpers": {
867
+ "default": false,
868
+ "description": "Disable generating custom helper functions like `__extends` in compiled output.",
869
+ "markdownDescription": "Disable generating custom helper functions like `__extends` in compiled output.\n\nSee more: https://www.typescriptlang.org/tsconfig#noEmitHelpers",
870
+ "type": [
871
+ "boolean",
872
+ "null"
873
+ ]
874
+ },
875
+ "noEmitOnError": {
876
+ "default": false,
877
+ "description": "Disable emitting files if any type checking errors are reported.",
878
+ "markdownDescription": "Disable emitting files if any type checking errors are reported.\n\nSee more: https://www.typescriptlang.org/tsconfig#noEmitOnError",
879
+ "type": [
880
+ "boolean",
881
+ "null"
882
+ ]
883
+ },
884
+ "noErrorTruncation": {
885
+ "default": false,
886
+ "description": "Disable truncating types in error messages.",
887
+ "markdownDescription": "Disable truncating types in error messages.\n\nSee more: https://www.typescriptlang.org/tsconfig#noErrorTruncation",
888
+ "type": [
889
+ "boolean",
890
+ "null"
891
+ ]
892
+ },
893
+ "noFallthroughCasesInSwitch": {
894
+ "default": false,
895
+ "description": "Enable error reporting for fallthrough cases in switch statements.",
896
+ "markdownDescription": "Enable error reporting for fallthrough cases in switch statements.\n\nSee more: https://www.typescriptlang.org/tsconfig#noFallthroughCasesInSwitch",
897
+ "type": [
898
+ "boolean",
899
+ "null"
900
+ ]
901
+ },
902
+ "noImplicitAny": {
903
+ "description": "Enable error reporting for expressions and declarations with an implied `any` type.",
904
+ "markdownDescription": "Enable error reporting for expressions and declarations with an implied `any` type.\n\nSee more: https://www.typescriptlang.org/tsconfig#noImplicitAny",
905
+ "type": [
906
+ "boolean",
907
+ "null"
908
+ ]
909
+ },
910
+ "noImplicitOverride": {
911
+ "default": false,
912
+ "description": "Ensure overriding members in derived classes are marked with an override modifier.",
913
+ "markdownDescription": "Ensure overriding members in derived classes are marked with an override modifier.\n\nSee more: https://www.typescriptlang.org/tsconfig#noImplicitOverride",
914
+ "type": [
915
+ "boolean",
916
+ "null"
917
+ ]
918
+ },
919
+ "noImplicitReturns": {
920
+ "default": false,
921
+ "description": "Enable error reporting for codepaths that do not explicitly return in a function.",
922
+ "markdownDescription": "Enable error reporting for codepaths that do not explicitly return in a function.\n\nSee more: https://www.typescriptlang.org/tsconfig#noImplicitReturns",
923
+ "type": [
924
+ "boolean",
925
+ "null"
926
+ ]
927
+ },
928
+ "noImplicitThis": {
929
+ "description": "Enable error reporting when `this` is given the type `any`.",
930
+ "markdownDescription": "Enable error reporting when `this` is given the type `any`.\n\nSee more: https://www.typescriptlang.org/tsconfig#noImplicitThis",
931
+ "type": [
932
+ "boolean",
933
+ "null"
934
+ ]
935
+ },
936
+ "noImplicitUseStrict": {
937
+ "default": false,
938
+ "description": "Disable adding `use strict` directives in emitted JavaScript files.",
939
+ "markdownDescription": "Disable adding `use strict` directives in emitted JavaScript files.\n\nSee more: https://www.typescriptlang.org/tsconfig#noImplicitUseStrict",
940
+ "type": [
941
+ "boolean",
942
+ "null"
943
+ ]
944
+ },
945
+ "noLib": {
946
+ "default": false,
947
+ "description": "Disable including any library files, including the default lib.d.ts.",
948
+ "markdownDescription": "Disable including any library files, including the default lib.d.ts.\n\nSee more: https://www.typescriptlang.org/tsconfig#noLib",
949
+ "type": [
950
+ "boolean",
951
+ "null"
952
+ ]
953
+ },
954
+ "noPropertyAccessFromIndexSignature": {
955
+ "description": "Enforces using indexed accessors for keys declared using an indexed type.",
956
+ "markdownDescription": "Enforces using indexed accessors for keys declared using an indexed type.\n\nSee more: https://www.typescriptlang.org/tsconfig#noPropertyAccessFromIndexSignature",
957
+ "type": [
958
+ "boolean",
959
+ "null"
960
+ ]
961
+ },
962
+ "noResolve": {
963
+ "default": false,
964
+ "description": "Disallow `import`s, `require`s or `\u003creference\u003e`s from expanding the number of files TypeScript should add to a project.",
965
+ "markdownDescription": "Disallow `import`s, `require`s or `\u003creference\u003e`s from expanding the number of files TypeScript should add to a project.\n\nSee more: https://www.typescriptlang.org/tsconfig#noResolve",
966
+ "type": [
967
+ "boolean",
968
+ "null"
969
+ ]
970
+ },
971
+ "noStrictGenericChecks": {
972
+ "default": false,
973
+ "description": "Disable strict checking of generic signatures in function types.",
974
+ "markdownDescription": "Disable strict checking of generic signatures in function types.\n\nSee more: https://www.typescriptlang.org/tsconfig#noStrictGenericChecks",
975
+ "type": [
976
+ "boolean",
977
+ "null"
978
+ ]
979
+ },
980
+ "noUncheckedIndexedAccess": {
981
+ "description": "Add `undefined` to a type when accessed using an index.",
982
+ "markdownDescription": "Add `undefined` to a type when accessed using an index.\n\nSee more: https://www.typescriptlang.org/tsconfig#noUncheckedIndexedAccess",
983
+ "type": [
984
+ "boolean",
985
+ "null"
986
+ ]
987
+ },
988
+ "noUncheckedSideEffectImports": {
989
+ "default": false,
990
+ "description": "Check side effect imports.",
991
+ "markdownDescription": "Check side effect imports.\n\nSee more: https://www.typescriptlang.org/tsconfig#noUncheckedSideEffectImports",
992
+ "type": [
993
+ "boolean",
994
+ "null"
995
+ ]
996
+ },
997
+ "noUnusedLocals": {
998
+ "default": false,
999
+ "description": "Enable error reporting when local variables aren't read.",
1000
+ "markdownDescription": "Enable error reporting when local variables aren't read.\n\nSee more: https://www.typescriptlang.org/tsconfig#noUnusedLocals",
1001
+ "type": [
1002
+ "boolean",
1003
+ "null"
1004
+ ]
1005
+ },
1006
+ "noUnusedParameters": {
1007
+ "default": false,
1008
+ "description": "Raise an error when a function parameter isn't read.",
1009
+ "markdownDescription": "Raise an error when a function parameter isn't read.\n\nSee more: https://www.typescriptlang.org/tsconfig#noUnusedParameters",
1010
+ "type": [
1011
+ "boolean",
1012
+ "null"
1013
+ ]
1014
+ },
1015
+ "out": {
1016
+ "description": "Deprecated setting. Use `outFile` instead.",
1017
+ "markdownDescription": "Deprecated setting. Use `outFile` instead.\n\nSee more: https://www.typescriptlang.org/tsconfig#out",
1018
+ "type": [
1019
+ "string",
1020
+ "null"
1021
+ ]
1022
+ },
1023
+ "outDir": {
1024
+ "description": "Specify an output folder for all emitted files.",
1025
+ "markdownDescription": "Specify an output folder for all emitted files.\n\nSee more: https://www.typescriptlang.org/tsconfig#outDir",
1026
+ "type": [
1027
+ "string",
1028
+ "null"
1029
+ ]
1030
+ },
1031
+ "outFile": {
1032
+ "description": "Specify a file that bundles all outputs into one JavaScript file. If `declaration` is true, also designates a file that bundles all .d.ts output.",
1033
+ "markdownDescription": "Specify a file that bundles all outputs into one JavaScript file. If `declaration` is true, also designates a file that bundles all .d.ts output.\n\nSee more: https://www.typescriptlang.org/tsconfig#outFile",
1034
+ "type": [
1035
+ "string",
1036
+ "null"
1037
+ ]
1038
+ },
1039
+ "paths": {
1040
+ "additionalProperties": {
1041
+ "items": {
1042
+ "description": "Path mapping to be computed relative to baseUrl option.",
1043
+ "type": "string"
1044
+ },
1045
+ "type": [
1046
+ "array",
1047
+ "null"
1048
+ ],
1049
+ "uniqueItems": true
1050
+ },
1051
+ "description": "Specify a set of entries that re-map imports to additional lookup locations.",
1052
+ "markdownDescription": "Specify a set of entries that re-map imports to additional lookup locations.\n\nSee more: https://www.typescriptlang.org/tsconfig#paths",
1053
+ "type": [
1054
+ "object",
1055
+ "null"
1056
+ ]
1057
+ },
1058
+ "plugins": {
1059
+ "description": "Specify a list of language service plugins to include.",
1060
+ "items": {
1061
+ "anyOf": [
1062
+ {
1063
+ "additionalProperties": false,
1064
+ "properties": {
1065
+ "allowedDuplicatedPackages": {
1066
+ "default": [],
1067
+ "description": "Package names allowed to have multiple versions without triggering duplicatePackage.",
1068
+ "items": {
1069
+ "type": "string"
1070
+ },
1071
+ "type": "array"
1072
+ },
1073
+ "barrelImportPackages": {
1074
+ "default": [],
1075
+ "description": "Package names that should prefer barrel named imports.",
1076
+ "items": {
1077
+ "type": "string"
1078
+ },
1079
+ "type": "array"
1080
+ },
1081
+ "completions": {
1082
+ "default": true,
1083
+ "description": "Controls Effect completions.",
1084
+ "type": "boolean"
1085
+ },
1086
+ "debug": {
1087
+ "default": false,
1088
+ "description": "Enables additional debug-only Effect language service output.",
1089
+ "type": "boolean"
1090
+ },
1091
+ "diagnosticSeverity": {
1092
+ "$ref": "#/definitions/effectLanguageServicePluginDiagnosticSeverityDefinition",
1093
+ "default": {},
1094
+ "description": "Maps rule names to severity levels. Use {} to enable diagnostics with rule defaults."
1095
+ },
1096
+ "diagnostics": {
1097
+ "default": true,
1098
+ "description": "Controls Effect diagnostics.",
1099
+ "type": "boolean"
1100
+ },
1101
+ "effectFn": {
1102
+ "default": [
1103
+ "span"
1104
+ ],
1105
+ "description": "Controls which effectFnOpportunity quickfix variants are offered.",
1106
+ "items": {
1107
+ "enum": [
1108
+ "span",
1109
+ "untraced",
1110
+ "no-span",
1111
+ "inferred-span",
1112
+ "suggested-span"
1113
+ ],
1114
+ "type": "string"
1115
+ },
1116
+ "type": "array",
1117
+ "uniqueItems": true
1118
+ },
1119
+ "extendedKeyDetection": {
1120
+ "default": false,
1121
+ "description": "Enables matching constructors with @effect-identifier annotations.",
1122
+ "type": "boolean"
1123
+ },
1124
+ "goto": {
1125
+ "default": true,
1126
+ "description": "Controls Effect goto references support.",
1127
+ "type": "boolean"
1128
+ },
1129
+ "ignoreEffectErrorsInTscExitCode": {
1130
+ "default": false,
1131
+ "description": "When true, error diagnostics do not affect the tsc exit code.",
1132
+ "type": "boolean"
1133
+ },
1134
+ "ignoreEffectSuggestionsInTscExitCode": {
1135
+ "default": true,
1136
+ "description": "When true, suggestion diagnostics do not affect the tsc exit code.",
1137
+ "type": "boolean"
1138
+ },
1139
+ "ignoreEffectWarningsInTscExitCode": {
1140
+ "default": false,
1141
+ "description": "When true, warning diagnostics do not affect the tsc exit code.",
1142
+ "type": "boolean"
1143
+ },
1144
+ "importAliases": {
1145
+ "additionalProperties": {
1146
+ "type": "string"
1147
+ },
1148
+ "default": {},
1149
+ "description": "Package-level import aliases keyed by package name.",
1150
+ "type": "object"
1151
+ },
1152
+ "includeSuggestionsInTsc": {
1153
+ "default": true,
1154
+ "description": "When false, suggestion-level Effect diagnostics are omitted from tsc CLI output.",
1155
+ "type": "boolean"
1156
+ },
1157
+ "inlays": {
1158
+ "default": false,
1159
+ "description": "When true, suppresses redundant return-type inlay hints on supported Effect generator functions.",
1160
+ "type": "boolean"
1161
+ },
1162
+ "keyPatterns": {
1163
+ "default": [
1164
+ {
1165
+ "target": "service",
1166
+ "pattern": "default",
1167
+ "skipLeadingPath": [
1168
+ "src/"
1169
+ ]
1170
+ },
1171
+ {
1172
+ "target": "custom",
1173
+ "pattern": "default",
1174
+ "skipLeadingPath": [
1175
+ "src/"
1176
+ ]
1177
+ }
1178
+ ],
1179
+ "description": "Configures key pattern formulas for the deterministicKeys rule.",
1180
+ "items": {
1181
+ "$ref": "#/definitions/effectLanguageServicePluginKeyPatternDefinition"
1182
+ },
1183
+ "type": "array"
1184
+ },
1185
+ "layerGraphFollowDepth": {
1186
+ "default": 0,
1187
+ "description": "How many levels deep the layer graph extraction follows symbol references.",
1188
+ "minimum": 0,
1189
+ "type": "integer"
1190
+ },
1191
+ "mermaidProvider": {
1192
+ "default": "mermaid.live",
1193
+ "description": "Mermaid rendering service for layer graph links. Accepts mermaid.live, mermaid.com, or a custom URL.",
1194
+ "type": "string"
1195
+ },
1196
+ "name": {
1197
+ "const": "@effect/language-service",
1198
+ "type": "string"
1199
+ },
1200
+ "namespaceImportPackages": {
1201
+ "default": [],
1202
+ "description": "Package names that should prefer namespace imports.",
1203
+ "items": {
1204
+ "type": "string"
1205
+ },
1206
+ "type": "array"
1207
+ },
1208
+ "noExternal": {
1209
+ "default": false,
1210
+ "description": "When true, suppresses external Mermaid links in hover output.",
1211
+ "type": "boolean"
1212
+ },
1213
+ "overrides": {
1214
+ "description": "Ordered per-file diagnostic option overrides.",
1215
+ "items": {
1216
+ "$ref": "#/definitions/effectLanguageServicePluginOverrideDefinition"
1217
+ },
1218
+ "type": "array"
1219
+ },
1220
+ "pipeableMinArgCount": {
1221
+ "default": 2,
1222
+ "description": "Minimum number of contiguous pipeable transformations to trigger missedPipeableOpportunity.",
1223
+ "minimum": 1,
1224
+ "type": "integer"
1225
+ },
1226
+ "quickinfo": {
1227
+ "default": true,
1228
+ "description": "Controls Effect quickinfo.",
1229
+ "type": "boolean"
1230
+ },
1231
+ "refactors": {
1232
+ "default": true,
1233
+ "description": "Controls Effect refactors.",
1234
+ "type": "boolean"
1235
+ },
1236
+ "renames": {
1237
+ "default": true,
1238
+ "description": "Controls Effect rename helpers.",
1239
+ "type": "boolean"
1240
+ },
1241
+ "skipDisabledOptimization": {
1242
+ "default": false,
1243
+ "description": "When true, disabled diagnostics are still processed so directives can re-enable them.",
1244
+ "type": "boolean"
1245
+ },
1246
+ "topLevelNamedReexports": {
1247
+ "default": "ignore",
1248
+ "description": "Controls whether named reexports are followed at package top-level.",
1249
+ "enum": [
1250
+ "ignore",
1251
+ "follow"
1252
+ ],
1253
+ "type": "string"
1254
+ }
1255
+ },
1256
+ "required": [
1257
+ "name"
1258
+ ],
1259
+ "title": "@effect/language-service plugin",
1260
+ "type": "object"
1261
+ },
1262
+ {
1263
+ "properties": {
1264
+ "name": {
1265
+ "description": "Plugin name.",
1266
+ "not": {
1267
+ "enum": [
1268
+ "@effect/language-service"
1269
+ ]
1270
+ },
1271
+ "type": "string"
1272
+ }
1273
+ },
1274
+ "type": "object"
1275
+ }
1276
+ ]
1277
+ },
1278
+ "markdownDescription": "Specify a list of language service plugins to include.\n\nSee more: https://www.typescriptlang.org/tsconfig#plugins",
1279
+ "type": [
1280
+ "array",
1281
+ "null"
1282
+ ]
1283
+ },
1284
+ "preserveConstEnums": {
1285
+ "default": false,
1286
+ "description": "Disable erasing `const enum` declarations in generated code.",
1287
+ "markdownDescription": "Disable erasing `const enum` declarations in generated code.\n\nSee more: https://www.typescriptlang.org/tsconfig#preserveConstEnums",
1288
+ "type": [
1289
+ "boolean",
1290
+ "null"
1291
+ ]
1292
+ },
1293
+ "preserveSymlinks": {
1294
+ "default": false,
1295
+ "description": "Disable resolving symlinks to their realpath. This correlates to the same flag in node.",
1296
+ "markdownDescription": "Disable resolving symlinks to their realpath. This correlates to the same flag in node.\n\nSee more: https://www.typescriptlang.org/tsconfig#preserveSymlinks",
1297
+ "type": [
1298
+ "boolean",
1299
+ "null"
1300
+ ]
1301
+ },
1302
+ "preserveValueImports": {
1303
+ "default": false,
1304
+ "description": "Preserve unused imported values in the JavaScript output that would otherwise be removed.",
1305
+ "markdownDescription": "Preserve unused imported values in the JavaScript output that would otherwise be removed.\n\nSee more: https://www.typescriptlang.org/tsconfig#preserveValueImports",
1306
+ "type": [
1307
+ "boolean",
1308
+ "null"
1309
+ ]
1310
+ },
1311
+ "preserveWatchOutput": {
1312
+ "description": "Disable wiping the console in watch mode.",
1313
+ "markdownDescription": "Disable wiping the console in watch mode.\n\nSee more: https://www.typescriptlang.org/tsconfig#preserveWatchOutput",
1314
+ "type": [
1315
+ "boolean",
1316
+ "null"
1317
+ ]
1318
+ },
1319
+ "pretty": {
1320
+ "default": true,
1321
+ "description": "Enable color and formatting in TypeScript's output to make compiler errors easier to read.",
1322
+ "markdownDescription": "Enable color and formatting in TypeScript's output to make compiler errors easier to read.\n\nSee more: https://www.typescriptlang.org/tsconfig#pretty",
1323
+ "type": [
1324
+ "boolean",
1325
+ "null"
1326
+ ]
1327
+ },
1328
+ "reactNamespace": {
1329
+ "default": "React",
1330
+ "description": "Specify the object invoked for `createElement`. This only applies when targeting `react` JSX emit.",
1331
+ "markdownDescription": "Specify the object invoked for `createElement`. This only applies when targeting `react` JSX emit.\n\nSee more: https://www.typescriptlang.org/tsconfig#reactNamespace",
1332
+ "type": [
1333
+ "string",
1334
+ "null"
1335
+ ]
1336
+ },
1337
+ "removeComments": {
1338
+ "default": false,
1339
+ "description": "Disable emitting comments.",
1340
+ "markdownDescription": "Disable emitting comments.\n\nSee more: https://www.typescriptlang.org/tsconfig#removeComments",
1341
+ "type": [
1342
+ "boolean",
1343
+ "null"
1344
+ ]
1345
+ },
1346
+ "resolveJsonModule": {
1347
+ "default": false,
1348
+ "description": "Enable importing .json files.",
1349
+ "markdownDescription": "Enable importing .json files.\n\nSee more: https://www.typescriptlang.org/tsconfig#resolveJsonModule",
1350
+ "type": [
1351
+ "boolean",
1352
+ "null"
1353
+ ]
1354
+ },
1355
+ "resolvePackageJsonExports": {
1356
+ "default": false,
1357
+ "description": "Use the package.json 'exports' field when resolving package imports.",
1358
+ "markdownDescription": "Use the package.json 'exports' field when resolving package imports.\n\nSee more: https://www.typescriptlang.org/tsconfig#resolvePackageJsonExports",
1359
+ "type": [
1360
+ "boolean",
1361
+ "null"
1362
+ ]
1363
+ },
1364
+ "resolvePackageJsonImports": {
1365
+ "default": false,
1366
+ "description": "Use the package.json 'imports' field when resolving imports.",
1367
+ "markdownDescription": "Use the package.json 'imports' field when resolving imports.\n\nSee more: https://www.typescriptlang.org/tsconfig#resolvePackageJsonImports",
1368
+ "type": [
1369
+ "boolean",
1370
+ "null"
1371
+ ]
1372
+ },
1373
+ "rewriteRelativeImportExtensions": {
1374
+ "default": false,
1375
+ "description": "Rewrite `.ts`, `.tsx`, `.mts`, and `.cts` file extensions in relative import paths to their JavaScript equivalent in output files.",
1376
+ "markdownDescription": "Rewrite `.ts`, `.tsx`, `.mts`, and `.cts` file extensions in relative import paths to their JavaScript equivalent in output files.\n\nSee more: https://www.typescriptlang.org/tsconfig#rewriteRelativeImportExtensions",
1377
+ "type": [
1378
+ "boolean",
1379
+ "null"
1380
+ ]
1381
+ },
1382
+ "rootDir": {
1383
+ "description": "Specify the root folder within your source files.",
1384
+ "markdownDescription": "Specify the root folder within your source files.\n\nSee more: https://www.typescriptlang.org/tsconfig#rootDir",
1385
+ "type": [
1386
+ "string",
1387
+ "null"
1388
+ ]
1389
+ },
1390
+ "rootDirs": {
1391
+ "description": "Allow multiple folders to be treated as one when resolving modules.",
1392
+ "items": {
1393
+ "type": "string"
1394
+ },
1395
+ "markdownDescription": "Allow multiple folders to be treated as one when resolving modules.\n\nSee more: https://www.typescriptlang.org/tsconfig#rootDirs",
1396
+ "type": [
1397
+ "array",
1398
+ "null"
1399
+ ],
1400
+ "uniqueItems": true
1401
+ },
1402
+ "skipDefaultLibCheck": {
1403
+ "default": false,
1404
+ "description": "Skip type checking .d.ts files that are included with TypeScript.",
1405
+ "markdownDescription": "Skip type checking .d.ts files that are included with TypeScript.\n\nSee more: https://www.typescriptlang.org/tsconfig#skipDefaultLibCheck",
1406
+ "type": [
1407
+ "boolean",
1408
+ "null"
1409
+ ]
1410
+ },
1411
+ "skipLibCheck": {
1412
+ "default": false,
1413
+ "description": "Skip type checking all .d.ts files.",
1414
+ "markdownDescription": "Skip type checking all .d.ts files.\n\nSee more: https://www.typescriptlang.org/tsconfig#skipLibCheck",
1415
+ "type": [
1416
+ "boolean",
1417
+ "null"
1418
+ ]
1419
+ },
1420
+ "sourceMap": {
1421
+ "default": false,
1422
+ "description": "Create source map files for emitted JavaScript files.",
1423
+ "markdownDescription": "Create source map files for emitted JavaScript files.\n\nSee more: https://www.typescriptlang.org/tsconfig#sourceMap",
1424
+ "type": [
1425
+ "boolean",
1426
+ "null"
1427
+ ]
1428
+ },
1429
+ "sourceRoot": {
1430
+ "description": "Specify the root path for debuggers to find the reference source code.",
1431
+ "markdownDescription": "Specify the root path for debuggers to find the reference source code.\n\nSee more: https://www.typescriptlang.org/tsconfig#sourceRoot",
1432
+ "type": [
1433
+ "string",
1434
+ "null"
1435
+ ]
1436
+ },
1437
+ "strict": {
1438
+ "default": false,
1439
+ "description": "Enable all strict type-checking options.",
1440
+ "markdownDescription": "Enable all strict type-checking options.\n\nSee more: https://www.typescriptlang.org/tsconfig#strict",
1441
+ "type": [
1442
+ "boolean",
1443
+ "null"
1444
+ ]
1445
+ },
1446
+ "strictBindCallApply": {
1447
+ "default": false,
1448
+ "description": "Check that the arguments for `bind`, `call`, and `apply` methods match the original function.",
1449
+ "markdownDescription": "Check that the arguments for `bind`, `call`, and `apply` methods match the original function.\n\nSee more: https://www.typescriptlang.org/tsconfig#strictBindCallApply",
1450
+ "type": [
1451
+ "boolean",
1452
+ "null"
1453
+ ]
1454
+ },
1455
+ "strictBuiltinIteratorReturn": {
1456
+ "default": false,
1457
+ "description": "Built-in iterators are instantiated with a `TReturn` type of `undefined` instead of `any`.",
1458
+ "markdownDescription": "Built-in iterators are instantiated with a `TReturn` type of `undefined` instead of `any`.\n\nSee more: https://www.typescriptlang.org/tsconfig#strictBuiltinIteratorReturn",
1459
+ "type": [
1460
+ "boolean",
1461
+ "null"
1462
+ ]
1463
+ },
1464
+ "strictFunctionTypes": {
1465
+ "default": false,
1466
+ "description": "When assigning functions, check to ensure parameters and the return values are subtype-compatible.",
1467
+ "markdownDescription": "When assigning functions, check to ensure parameters and the return values are subtype-compatible.\n\nSee more: https://www.typescriptlang.org/tsconfig#strictFunctionTypes",
1468
+ "type": [
1469
+ "boolean",
1470
+ "null"
1471
+ ]
1472
+ },
1473
+ "strictNullChecks": {
1474
+ "default": false,
1475
+ "description": "When type checking, take into account `null` and `undefined`.",
1476
+ "markdownDescription": "When type checking, take into account `null` and `undefined`.\n\nSee more: https://www.typescriptlang.org/tsconfig#strictNullChecks",
1477
+ "type": [
1478
+ "boolean",
1479
+ "null"
1480
+ ]
1481
+ },
1482
+ "strictPropertyInitialization": {
1483
+ "default": false,
1484
+ "description": "Check for class properties that are declared but not set in the constructor.",
1485
+ "markdownDescription": "Check for class properties that are declared but not set in the constructor.\n\nSee more: https://www.typescriptlang.org/tsconfig#strictPropertyInitialization",
1486
+ "type": [
1487
+ "boolean",
1488
+ "null"
1489
+ ]
1490
+ },
1491
+ "stripInternal": {
1492
+ "description": "Disable emitting declarations that have `@internal` in their JSDoc comments.",
1493
+ "markdownDescription": "Disable emitting declarations that have `@internal` in their JSDoc comments.\n\nSee more: https://www.typescriptlang.org/tsconfig#stripInternal",
1494
+ "type": [
1495
+ "boolean",
1496
+ "null"
1497
+ ]
1498
+ },
1499
+ "suppressExcessPropertyErrors": {
1500
+ "default": false,
1501
+ "description": "Disable reporting of excess property errors during the creation of object literals.",
1502
+ "markdownDescription": "Disable reporting of excess property errors during the creation of object literals.\n\nSee more: https://www.typescriptlang.org/tsconfig#suppressExcessPropertyErrors",
1503
+ "type": [
1504
+ "boolean",
1505
+ "null"
1506
+ ]
1507
+ },
1508
+ "suppressImplicitAnyIndexErrors": {
1509
+ "default": false,
1510
+ "description": "Suppress `noImplicitAny` errors when indexing objects that lack index signatures.",
1511
+ "markdownDescription": "Suppress `noImplicitAny` errors when indexing objects that lack index signatures.\n\nSee more: https://www.typescriptlang.org/tsconfig#suppressImplicitAnyIndexErrors",
1512
+ "type": [
1513
+ "boolean",
1514
+ "null"
1515
+ ]
1516
+ },
1517
+ "target": {
1518
+ "anyOf": [
1519
+ {
1520
+ "enum": [
1521
+ "es3",
1522
+ "es5",
1523
+ "es6",
1524
+ "es2015",
1525
+ "es2016",
1526
+ "es2017",
1527
+ "es2018",
1528
+ "es2019",
1529
+ "es2020",
1530
+ "es2021",
1531
+ "es2022",
1532
+ "es2023",
1533
+ "es2024",
1534
+ "esnext"
1535
+ ]
1536
+ },
1537
+ {
1538
+ "pattern": "^([Ee][Ss]([356]|(20(1[56789]|2[01234]))|[Nn][Ee][Xx][Tt]))$"
1539
+ }
1540
+ ],
1541
+ "default": "es3",
1542
+ "description": "Set the JavaScript language version for emitted JavaScript and include compatible library declarations.",
1543
+ "markdownDescription": "Set the JavaScript language version for emitted JavaScript and include compatible library declarations.\n\nSee more: https://www.typescriptlang.org/tsconfig#target",
1544
+ "type": [
1545
+ "string",
1546
+ "null"
1547
+ ]
1548
+ },
1549
+ "traceResolution": {
1550
+ "default": false,
1551
+ "description": "Log paths used during the `moduleResolution` process.",
1552
+ "markdownDescription": "Log paths used during the `moduleResolution` process.\n\nSee more: https://www.typescriptlang.org/tsconfig#traceResolution",
1553
+ "type": [
1554
+ "boolean",
1555
+ "null"
1556
+ ]
1557
+ },
1558
+ "tsBuildInfoFile": {
1559
+ "default": ".tsbuildinfo",
1560
+ "description": "Specify the path to .tsbuildinfo incremental compilation file.",
1561
+ "markdownDescription": "Specify the path to .tsbuildinfo incremental compilation file.\n\nSee more: https://www.typescriptlang.org/tsconfig#tsBuildInfoFile",
1562
+ "type": [
1563
+ "string",
1564
+ "null"
1565
+ ]
1566
+ },
1567
+ "typeRoots": {
1568
+ "description": "Specify multiple folders that act like `./node_modules/@types`.",
1569
+ "items": {
1570
+ "type": "string"
1571
+ },
1572
+ "markdownDescription": "Specify multiple folders that act like `./node_modules/@types`.\n\nSee more: https://www.typescriptlang.org/tsconfig#typeRoots",
1573
+ "type": [
1574
+ "array",
1575
+ "null"
1576
+ ],
1577
+ "uniqueItems": true
1578
+ },
1579
+ "types": {
1580
+ "description": "Specify type package names to be included without being referenced in a source file.",
1581
+ "items": {
1582
+ "type": "string"
1583
+ },
1584
+ "markdownDescription": "Specify type package names to be included without being referenced in a source file.\n\nSee more: https://www.typescriptlang.org/tsconfig#types",
1585
+ "type": [
1586
+ "array",
1587
+ "null"
1588
+ ],
1589
+ "uniqueItems": true
1590
+ },
1591
+ "useDefineForClassFields": {
1592
+ "default": false,
1593
+ "description": "Emit ECMAScript-standard-compliant class fields.",
1594
+ "markdownDescription": "Emit ECMAScript-standard-compliant class fields.\n\nSee more: https://www.typescriptlang.org/tsconfig#useDefineForClassFields",
1595
+ "type": [
1596
+ "boolean",
1597
+ "null"
1598
+ ]
1599
+ },
1600
+ "useUnknownInCatchVariables": {
1601
+ "default": false,
1602
+ "description": "Default catch clause variables as `unknown` instead of `any`.",
1603
+ "markdownDescription": "Default catch clause variables as `unknown` instead of `any`.\n\nSee more: https://www.typescriptlang.org/tsconfig#useUnknownInCatchVariables",
1604
+ "type": [
1605
+ "boolean",
1606
+ "null"
1607
+ ]
1608
+ },
1609
+ "verbatimModuleSyntax": {
1610
+ "description": "Do not transform or elide any imports or exports not marked as type-only, ensuring they are written in the output file's format based on the `module` setting.",
1611
+ "markdownDescription": "Do not transform or elide any imports or exports not marked as type-only, ensuring they are written in the output file's format based on the `module` setting.\n\nSee more: https://www.typescriptlang.org/tsconfig#verbatimModuleSyntax",
1612
+ "type": [
1613
+ "boolean",
1614
+ "null"
1615
+ ]
1616
+ },
1617
+ "watch": {
1618
+ "description": "Watch input files.",
1619
+ "type": [
1620
+ "boolean",
1621
+ "null"
1622
+ ]
1623
+ },
1624
+ "watchDirectory": {
1625
+ "default": "useFsEvents",
1626
+ "description": "Specify the strategy for watching directories under systems that lack recursive file-watching functionality. Requires TypeScript version 3.8 or later.",
1627
+ "enum": [
1628
+ "useFsEvents",
1629
+ "fixedPollingInterval",
1630
+ "dynamicPriorityPolling",
1631
+ "fixedChunkSizePolling"
1632
+ ]
1633
+ },
1634
+ "watchFile": {
1635
+ "default": "useFsEvents",
1636
+ "description": "Specify the strategy for watching individual files. Requires TypeScript version 3.8 or later.",
1637
+ "enum": [
1638
+ "fixedPollingInterval",
1639
+ "priorityPollingInterval",
1640
+ "dynamicPriorityPolling",
1641
+ "useFsEvents",
1642
+ "useFsEventsOnParentDirectory",
1643
+ "fixedChunkSizePolling"
1644
+ ]
1645
+ }
1646
+ },
1647
+ "type": [
1648
+ "object",
1649
+ "null"
1650
+ ]
1651
+ }
1652
+ }
1653
+ },
1654
+ "effectLanguageServicePluginDiagnosticSeverityDefinition": {
1655
+ "additionalProperties": {
1656
+ "enum": [
1657
+ "off",
1658
+ "error",
1659
+ "warning",
1660
+ "message",
1661
+ "suggestion"
1662
+ ],
1663
+ "type": "string"
1664
+ },
1665
+ "description": "Allows overriding the default severity for each Effect diagnostic across the project.",
1666
+ "properties": {
1667
+ "anyUnknownInErrorContext": {
1668
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1669
+ "default": "off",
1670
+ "description": "Detects 'any' or 'unknown' types in Effect error or requirements channels"
1671
+ },
1672
+ "asyncFunction": {
1673
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1674
+ "default": "off",
1675
+ "description": "Warns when declaring async functions and suggests using Effect values and Effect.gen for async control flow"
1676
+ },
1677
+ "catchAllToMapError": {
1678
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1679
+ "default": "suggestion",
1680
+ "description": "Suggests using Effect.mapError instead of Effect.catch + Effect.fail"
1681
+ },
1682
+ "catchToIgnore": {
1683
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1684
+ "default": "suggestion",
1685
+ "description": "Suggests using Effect.ignore or Effect.ignoreCause instead of Effect.catch/catchCause returning Effect.void"
1686
+ },
1687
+ "catchToOrElseSucceed": {
1688
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1689
+ "default": "suggestion",
1690
+ "description": "Suggests using Effect.orElseSucceed instead of Effect.catch + Effect.succeed"
1691
+ },
1692
+ "catchUnfailableEffect": {
1693
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1694
+ "default": "suggestion",
1695
+ "description": "Warns when using error handling on Effects that never fail"
1696
+ },
1697
+ "classSelfMismatch": {
1698
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1699
+ "default": "error",
1700
+ "description": "Ensures Self type parameter matches the class name in Context/Service/Tag/Schema classes"
1701
+ },
1702
+ "cryptoRandomUUID": {
1703
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1704
+ "default": "off",
1705
+ "description": "Warns when using crypto.randomUUID() outside Effect generators instead of the Effect Random module, which uses Effect-injected randomness rather than the crypto module behind the scenes"
1706
+ },
1707
+ "cryptoRandomUUIDInEffect": {
1708
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1709
+ "default": "off",
1710
+ "description": "Warns when using crypto.randomUUID() inside Effect generators instead of the Effect Random module, which uses Effect-injected randomness rather than the crypto module behind the scenes"
1711
+ },
1712
+ "deterministicKeys": {
1713
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1714
+ "default": "off",
1715
+ "description": "Enforces deterministic naming for service/tag/error identifiers based on class names"
1716
+ },
1717
+ "duplicatePackage": {
1718
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1719
+ "default": "warning",
1720
+ "description": "Warns when multiple versions of an Effect-related package are detected in the program"
1721
+ },
1722
+ "effectDoNotation": {
1723
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1724
+ "default": "off",
1725
+ "description": "Suggests using Effect.gen or Effect.fn instead of the Effect.Do notation helpers"
1726
+ },
1727
+ "effectFnIife": {
1728
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1729
+ "default": "warning",
1730
+ "description": "Effect.fn or Effect.fnUntraced is called as an IIFE; use Effect.gen instead"
1731
+ },
1732
+ "effectFnImplicitAny": {
1733
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1734
+ "default": "error",
1735
+ "description": "Mirrors noImplicitAny for unannotated Effect.fn, Effect.fnUntraced, and Effect.fnUntracedEager callback parameters when no outer contextual function type exists. Requires TS's noImplicitAny: true"
1736
+ },
1737
+ "effectFnOpportunity": {
1738
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1739
+ "default": "suggestion",
1740
+ "description": "Suggests using Effect.fn for functions that return an Effect"
1741
+ },
1742
+ "effectGenUsesAdapter": {
1743
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1744
+ "default": "warning",
1745
+ "description": "Warns when using the deprecated adapter parameter in Effect.gen"
1746
+ },
1747
+ "effectInFailure": {
1748
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1749
+ "default": "warning",
1750
+ "description": "Warns when an Effect is used inside an Effect failure channel"
1751
+ },
1752
+ "effectInVoidSuccess": {
1753
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1754
+ "default": "warning",
1755
+ "description": "Detects nested Effects in void success channels that may cause unexecuted effects"
1756
+ },
1757
+ "effectMapFlatten": {
1758
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1759
+ "default": "suggestion",
1760
+ "description": "Suggests using Effect.flatMap instead of Effect.map followed by Effect.flatten in piping flows"
1761
+ },
1762
+ "effectMapVoid": {
1763
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1764
+ "default": "suggestion",
1765
+ "description": "Suggests using Effect.asVoid instead of Effect.map(() =\u003e void 0), Effect.map(() =\u003e undefined), or Effect.map(() =\u003e {})"
1766
+ },
1767
+ "effectSucceedWithVoid": {
1768
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1769
+ "default": "suggestion",
1770
+ "description": "Suggests using Effect.void instead of Effect.succeed(undefined) or Effect.succeed(void 0)"
1771
+ },
1772
+ "extendsNativeError": {
1773
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1774
+ "default": "off",
1775
+ "description": "Warns when a class directly extends the native Error class"
1776
+ },
1777
+ "flatMapToMap": {
1778
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1779
+ "default": "suggestion",
1780
+ "description": "Suggests using Effect.map instead of Effect.flatMap when the callback only wraps its result with Effect.succeed"
1781
+ },
1782
+ "floatingEffect": {
1783
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1784
+ "default": "error",
1785
+ "description": "Detects Effect values that are neither yielded nor assigned"
1786
+ },
1787
+ "genericEffectServices": {
1788
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1789
+ "default": "warning",
1790
+ "description": "Prevents services with type parameters that cannot be discriminated at runtime"
1791
+ },
1792
+ "globalConsole": {
1793
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1794
+ "default": "off",
1795
+ "description": "Warns when using console methods outside Effect generators instead of Effect.log/Logger"
1796
+ },
1797
+ "globalConsoleInEffect": {
1798
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1799
+ "default": "off",
1800
+ "description": "Warns when using console methods inside Effect generators instead of Effect.log/Logger"
1801
+ },
1802
+ "globalDate": {
1803
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1804
+ "default": "off",
1805
+ "description": "Warns when using Date.now() or new Date() outside Effect generators instead of Clock/DateTime"
1806
+ },
1807
+ "globalDateInEffect": {
1808
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1809
+ "default": "off",
1810
+ "description": "Warns when using Date.now() or new Date() inside Effect generators instead of Clock/DateTime"
1811
+ },
1812
+ "globalErrorInEffectCatch": {
1813
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1814
+ "default": "warning",
1815
+ "description": "Warns when catch callbacks return global Error type instead of typed errors"
1816
+ },
1817
+ "globalErrorInEffectFailure": {
1818
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1819
+ "default": "warning",
1820
+ "description": "Warns when the global Error type is used in an Effect failure channel"
1821
+ },
1822
+ "globalFetch": {
1823
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1824
+ "default": "off",
1825
+ "description": "Warns when using the global fetch function outside Effect generators instead of the Effect HTTP client"
1826
+ },
1827
+ "globalFetchInEffect": {
1828
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1829
+ "default": "off",
1830
+ "description": "Warns when using the global fetch function inside Effect generators instead of the Effect HTTP client"
1831
+ },
1832
+ "globalRandom": {
1833
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1834
+ "default": "off",
1835
+ "description": "Warns when using Math.random() outside Effect generators instead of the Random service"
1836
+ },
1837
+ "globalRandomInEffect": {
1838
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1839
+ "default": "off",
1840
+ "description": "Warns when using Math.random() inside Effect generators instead of the Random service"
1841
+ },
1842
+ "globalTimers": {
1843
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1844
+ "default": "off",
1845
+ "description": "Warns when using setTimeout/setInterval outside Effect generators instead of Effect.sleep/Schedule"
1846
+ },
1847
+ "globalTimersInEffect": {
1848
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1849
+ "default": "off",
1850
+ "description": "Warns when using setTimeout/setInterval inside Effect generators instead of Effect.sleep/Schedule"
1851
+ },
1852
+ "instanceOfSchema": {
1853
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1854
+ "default": "off",
1855
+ "description": "Suggests using Schema.is instead of instanceof for Effect Schema types"
1856
+ },
1857
+ "layerMergeAllWithDependencies": {
1858
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1859
+ "default": "warning",
1860
+ "description": "Detects interdependencies in Layer.mergeAll calls where one layer provides a service that another layer requires"
1861
+ },
1862
+ "lazyEffect": {
1863
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1864
+ "default": "suggestion",
1865
+ "description": "Suggests avoiding exported zero-argument functions and service members that lazily return Effect or Stream values"
1866
+ },
1867
+ "lazyPromiseInEffectSync": {
1868
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1869
+ "default": "warning",
1870
+ "description": "Warns when Effect.sync lazily returns a Promise instead of using an async Effect constructor"
1871
+ },
1872
+ "leakingRequirements": {
1873
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1874
+ "default": "suggestion",
1875
+ "description": "Detects implementation services leaked in service methods"
1876
+ },
1877
+ "missedPipeableOpportunity": {
1878
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1879
+ "default": "off",
1880
+ "description": "Suggests using .pipe() for nested function calls"
1881
+ },
1882
+ "missingEffectContext": {
1883
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1884
+ "default": "error",
1885
+ "description": "Detects Effect values with unhandled context requirements"
1886
+ },
1887
+ "missingEffectError": {
1888
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1889
+ "default": "error",
1890
+ "description": "Detects Effect values with unhandled error types"
1891
+ },
1892
+ "missingEffectServiceDependency": {
1893
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1894
+ "default": "off",
1895
+ "description": "Checks that Effect.Service dependencies satisfy all required layer inputs"
1896
+ },
1897
+ "missingLayerContext": {
1898
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1899
+ "default": "error",
1900
+ "description": "Detects Layer values with unhandled context requirements"
1901
+ },
1902
+ "missingReturnYieldStar": {
1903
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1904
+ "default": "error",
1905
+ "description": "Suggests using return yield* for Effects that never succeed"
1906
+ },
1907
+ "missingStarInYieldEffectGen": {
1908
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1909
+ "default": "error",
1910
+ "description": "Detects bare yield (without *) inside Effect generator scopes"
1911
+ },
1912
+ "multipleCatchTag": {
1913
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1914
+ "default": "suggestion",
1915
+ "description": "Suggests collapsing consecutive Effect.catchTag transformations into a single Effect.catchTags call when semantics stay equivalent"
1916
+ },
1917
+ "multipleEffectProvide": {
1918
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1919
+ "default": "warning",
1920
+ "description": "Warns against chaining Effect.provide calls which can cause service lifecycle issues"
1921
+ },
1922
+ "nestedEffectGenYield": {
1923
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1924
+ "default": "off",
1925
+ "description": "Warns when yielding a nested bare Effect.gen inside an existing Effect generator context"
1926
+ },
1927
+ "newPromise": {
1928
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1929
+ "default": "off",
1930
+ "description": "Warns when constructing promises with new Promise instead of using Effect APIs"
1931
+ },
1932
+ "newSchemaClass": {
1933
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1934
+ "default": "off",
1935
+ "description": "Suggests using Schema make instead of new for Schema classes"
1936
+ },
1937
+ "nodeBuiltinImport": {
1938
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1939
+ "default": "off",
1940
+ "description": "Warns when importing Node.js built-in modules that have Effect-native counterparts"
1941
+ },
1942
+ "nonObjectEffectServiceType": {
1943
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1944
+ "default": "error",
1945
+ "description": "Ensures Effect.Service types are objects, not primitives"
1946
+ },
1947
+ "outdatedApi": {
1948
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1949
+ "default": "warning",
1950
+ "description": "Detects usage of APIs that have been removed or renamed in Effect v4"
1951
+ },
1952
+ "overriddenSchemaConstructor": {
1953
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1954
+ "default": "error",
1955
+ "description": "Prevents overriding constructors in Schema classes which breaks decoding behavior"
1956
+ },
1957
+ "preferSchemaOverJson": {
1958
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1959
+ "default": "off",
1960
+ "description": "Suggests using Effect Schema for JSON operations instead of JSON.parse/JSON.stringify"
1961
+ },
1962
+ "processEnv": {
1963
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1964
+ "default": "off",
1965
+ "description": "Warns when reading process.env outside Effect generators instead of using Effect Config"
1966
+ },
1967
+ "processEnvInEffect": {
1968
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1969
+ "default": "off",
1970
+ "description": "Warns when reading process.env inside Effect generators instead of using Effect Config"
1971
+ },
1972
+ "redundantMapError": {
1973
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1974
+ "default": "suggestion",
1975
+ "description": "Suggests hoisting a repeated trailing Effect.mapError from every yield in an Effect generator"
1976
+ },
1977
+ "redundantOrDie": {
1978
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1979
+ "default": "suggestion",
1980
+ "description": "Suggests hoisting a repeated trailing Effect.orDie from every yield in an Effect generator"
1981
+ },
1982
+ "redundantSchemaTagIdentifier": {
1983
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1984
+ "default": "suggestion",
1985
+ "description": "Suggests removing redundant identifier argument when it equals the tag value in Schema.TaggedClass/TaggedError/TaggedRequest"
1986
+ },
1987
+ "returnEffectInGen": {
1988
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1989
+ "default": "suggestion",
1990
+ "description": "Warns when returning an Effect in a generator causes nested Effect\u003cEffect\u003c...\u003e\u003e"
1991
+ },
1992
+ "runEffectInsideEffect": {
1993
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1994
+ "default": "suggestion",
1995
+ "description": "Suggests using Runtime or Effect.run*With methods instead of Effect.run* inside Effect contexts"
1996
+ },
1997
+ "schemaNumber": {
1998
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
1999
+ "default": "suggestion",
2000
+ "description": "Suggests Schema.Finite and Schema.FiniteFromString instead of Schema.Number APIs when describing domain numbers"
2001
+ },
2002
+ "schemaStructWithTag": {
2003
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
2004
+ "default": "suggestion",
2005
+ "description": "Suggests using Schema.TaggedStruct instead of Schema.Struct with _tag field"
2006
+ },
2007
+ "schemaSyncInEffect": {
2008
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
2009
+ "default": "suggestion",
2010
+ "description": "Suggests using Effect-based Schema methods instead of sync methods inside Effect generators"
2011
+ },
2012
+ "schemaUnionOfLiterals": {
2013
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
2014
+ "default": "off",
2015
+ "description": "Suggests combining multiple Schema.Literal calls in Schema.Union into a single Schema.Literal"
2016
+ },
2017
+ "scopeInLayerEffect": {
2018
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
2019
+ "default": "warning",
2020
+ "description": "Suggests using Layer.scoped instead of Layer.effect when Scope is in requirements"
2021
+ },
2022
+ "serviceNotAsClass": {
2023
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
2024
+ "default": "off",
2025
+ "description": "Warns when Context.Service is used as a variable instead of a class declaration"
2026
+ },
2027
+ "strictBooleanExpressions": {
2028
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
2029
+ "default": "off",
2030
+ "description": "Enforces boolean types in conditional expressions for type safety"
2031
+ },
2032
+ "strictEffectProvide": {
2033
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
2034
+ "default": "off",
2035
+ "description": "Warns when using Effect.provide with layers outside of application entry points"
2036
+ },
2037
+ "tryCatchInEffectGen": {
2038
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
2039
+ "default": "suggestion",
2040
+ "description": "Discourages try/catch in Effect generators in favor of Effect error handling"
2041
+ },
2042
+ "unknownInEffectCatch": {
2043
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
2044
+ "default": "warning",
2045
+ "description": "Warns when catch callbacks return unknown instead of typed errors"
2046
+ },
2047
+ "unnecessaryArrowBlock": {
2048
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
2049
+ "default": "off",
2050
+ "description": "Suggests using a concise arrow body when the block only returns an expression"
2051
+ },
2052
+ "unnecessaryEffectGen": {
2053
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
2054
+ "default": "suggestion",
2055
+ "description": "Suggests removing Effect.gen when it contains only a single return statement"
2056
+ },
2057
+ "unnecessaryFailYieldableError": {
2058
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
2059
+ "default": "suggestion",
2060
+ "description": "Suggests yielding yieldable errors directly instead of wrapping with Effect.fail"
2061
+ },
2062
+ "unnecessaryPipe": {
2063
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
2064
+ "default": "suggestion",
2065
+ "description": "Removes pipe calls with no arguments"
2066
+ },
2067
+ "unnecessaryPipeChain": {
2068
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
2069
+ "default": "suggestion",
2070
+ "description": "Simplifies chained pipe calls into a single pipe call"
2071
+ },
2072
+ "unnecessaryTypeofType": {
2073
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
2074
+ "default": "suggestion",
2075
+ "description": "Suggests replacing typeof Schema.Type style annotations with the matching named type when available"
2076
+ },
2077
+ "unsafeEffectTypeAssertion": {
2078
+ "$ref": "#/definitions/effectLanguageServicePluginSeverityDefinition",
2079
+ "default": "off",
2080
+ "description": "Detects unsafe type assertions that narrow Effect, Stream, or Layer error or requirements channels"
2081
+ }
2082
+ },
2083
+ "type": "object"
2084
+ },
2085
+ "effectLanguageServicePluginKeyPatternDefinition": {
2086
+ "additionalProperties": false,
2087
+ "properties": {
2088
+ "pattern": {
2089
+ "default": "default",
2090
+ "description": "Formula used to compute the key.",
2091
+ "enum": [
2092
+ "default",
2093
+ "package-identifier",
2094
+ "default-hashed"
2095
+ ],
2096
+ "type": "string"
2097
+ },
2098
+ "skipLeadingPath": {
2099
+ "default": [
2100
+ "src/"
2101
+ ],
2102
+ "description": "Path prefixes to strip from the sub-directory segment.",
2103
+ "items": {
2104
+ "type": "string"
2105
+ },
2106
+ "type": "array"
2107
+ },
2108
+ "target": {
2109
+ "default": "service",
2110
+ "description": "Target category this pattern applies to.",
2111
+ "enum": [
2112
+ "service",
2113
+ "error",
2114
+ "custom"
2115
+ ],
2116
+ "type": "string"
2117
+ }
2118
+ },
2119
+ "type": "object"
2120
+ },
2121
+ "effectLanguageServicePluginOptionsDefinition": {
2122
+ "additionalProperties": false,
2123
+ "properties": {
2124
+ "allowedDuplicatedPackages": {
2125
+ "default": [],
2126
+ "description": "Package names allowed to have multiple versions without triggering duplicatePackage.",
2127
+ "items": {
2128
+ "type": "string"
2129
+ },
2130
+ "type": "array"
2131
+ },
2132
+ "barrelImportPackages": {
2133
+ "default": [],
2134
+ "description": "Package names that should prefer barrel named imports.",
2135
+ "items": {
2136
+ "type": "string"
2137
+ },
2138
+ "type": "array"
2139
+ },
2140
+ "completions": {
2141
+ "default": true,
2142
+ "description": "Controls Effect completions.",
2143
+ "type": "boolean"
2144
+ },
2145
+ "debug": {
2146
+ "default": false,
2147
+ "description": "Enables additional debug-only Effect language service output.",
2148
+ "type": "boolean"
2149
+ },
2150
+ "diagnosticSeverity": {
2151
+ "$ref": "#/definitions/effectLanguageServicePluginDiagnosticSeverityDefinition",
2152
+ "default": {},
2153
+ "description": "Maps rule names to severity levels. Use {} to enable diagnostics with rule defaults."
2154
+ },
2155
+ "diagnostics": {
2156
+ "default": true,
2157
+ "description": "Controls Effect diagnostics.",
2158
+ "type": "boolean"
2159
+ },
2160
+ "effectFn": {
2161
+ "default": [
2162
+ "span"
2163
+ ],
2164
+ "description": "Controls which effectFnOpportunity quickfix variants are offered.",
2165
+ "items": {
2166
+ "enum": [
2167
+ "span",
2168
+ "untraced",
2169
+ "no-span",
2170
+ "inferred-span",
2171
+ "suggested-span"
2172
+ ],
2173
+ "type": "string"
2174
+ },
2175
+ "type": "array",
2176
+ "uniqueItems": true
2177
+ },
2178
+ "extendedKeyDetection": {
2179
+ "default": false,
2180
+ "description": "Enables matching constructors with @effect-identifier annotations.",
2181
+ "type": "boolean"
2182
+ },
2183
+ "goto": {
2184
+ "default": true,
2185
+ "description": "Controls Effect goto references support.",
2186
+ "type": "boolean"
2187
+ },
2188
+ "ignoreEffectErrorsInTscExitCode": {
2189
+ "default": false,
2190
+ "description": "When true, error diagnostics do not affect the tsc exit code.",
2191
+ "type": "boolean"
2192
+ },
2193
+ "ignoreEffectSuggestionsInTscExitCode": {
2194
+ "default": true,
2195
+ "description": "When true, suggestion diagnostics do not affect the tsc exit code.",
2196
+ "type": "boolean"
2197
+ },
2198
+ "ignoreEffectWarningsInTscExitCode": {
2199
+ "default": false,
2200
+ "description": "When true, warning diagnostics do not affect the tsc exit code.",
2201
+ "type": "boolean"
2202
+ },
2203
+ "importAliases": {
2204
+ "additionalProperties": {
2205
+ "type": "string"
2206
+ },
2207
+ "default": {},
2208
+ "description": "Package-level import aliases keyed by package name.",
2209
+ "type": "object"
2210
+ },
2211
+ "includeSuggestionsInTsc": {
2212
+ "default": true,
2213
+ "description": "When false, suggestion-level Effect diagnostics are omitted from tsc CLI output.",
2214
+ "type": "boolean"
2215
+ },
2216
+ "inlays": {
2217
+ "default": false,
2218
+ "description": "When true, suppresses redundant return-type inlay hints on supported Effect generator functions.",
2219
+ "type": "boolean"
2220
+ },
2221
+ "keyPatterns": {
2222
+ "default": [
2223
+ {
2224
+ "target": "service",
2225
+ "pattern": "default",
2226
+ "skipLeadingPath": [
2227
+ "src/"
2228
+ ]
2229
+ },
2230
+ {
2231
+ "target": "custom",
2232
+ "pattern": "default",
2233
+ "skipLeadingPath": [
2234
+ "src/"
2235
+ ]
2236
+ }
2237
+ ],
2238
+ "description": "Configures key pattern formulas for the deterministicKeys rule.",
2239
+ "items": {
2240
+ "$ref": "#/definitions/effectLanguageServicePluginKeyPatternDefinition"
2241
+ },
2242
+ "type": "array"
2243
+ },
2244
+ "layerGraphFollowDepth": {
2245
+ "default": 0,
2246
+ "description": "How many levels deep the layer graph extraction follows symbol references.",
2247
+ "minimum": 0,
2248
+ "type": "integer"
2249
+ },
2250
+ "mermaidProvider": {
2251
+ "default": "mermaid.live",
2252
+ "description": "Mermaid rendering service for layer graph links. Accepts mermaid.live, mermaid.com, or a custom URL.",
2253
+ "type": "string"
2254
+ },
2255
+ "namespaceImportPackages": {
2256
+ "default": [],
2257
+ "description": "Package names that should prefer namespace imports.",
2258
+ "items": {
2259
+ "type": "string"
2260
+ },
2261
+ "type": "array"
2262
+ },
2263
+ "noExternal": {
2264
+ "default": false,
2265
+ "description": "When true, suppresses external Mermaid links in hover output.",
2266
+ "type": "boolean"
2267
+ },
2268
+ "overrides": {
2269
+ "description": "Ordered per-file diagnostic option overrides.",
2270
+ "items": {
2271
+ "$ref": "#/definitions/effectLanguageServicePluginOverrideDefinition"
2272
+ },
2273
+ "type": "array"
2274
+ },
2275
+ "pipeableMinArgCount": {
2276
+ "default": 2,
2277
+ "description": "Minimum number of contiguous pipeable transformations to trigger missedPipeableOpportunity.",
2278
+ "minimum": 1,
2279
+ "type": "integer"
2280
+ },
2281
+ "quickinfo": {
2282
+ "default": true,
2283
+ "description": "Controls Effect quickinfo.",
2284
+ "type": "boolean"
2285
+ },
2286
+ "refactors": {
2287
+ "default": true,
2288
+ "description": "Controls Effect refactors.",
2289
+ "type": "boolean"
2290
+ },
2291
+ "renames": {
2292
+ "default": true,
2293
+ "description": "Controls Effect rename helpers.",
2294
+ "type": "boolean"
2295
+ },
2296
+ "skipDisabledOptimization": {
2297
+ "default": false,
2298
+ "description": "When true, disabled diagnostics are still processed so directives can re-enable them.",
2299
+ "type": "boolean"
2300
+ },
2301
+ "topLevelNamedReexports": {
2302
+ "default": "ignore",
2303
+ "description": "Controls whether named reexports are followed at package top-level.",
2304
+ "enum": [
2305
+ "ignore",
2306
+ "follow"
2307
+ ],
2308
+ "type": "string"
2309
+ }
2310
+ },
2311
+ "type": "object"
2312
+ },
2313
+ "effectLanguageServicePluginOverrideDefinition": {
2314
+ "additionalProperties": false,
2315
+ "properties": {
2316
+ "exclude": {
2317
+ "description": "Files excluded from this override.",
2318
+ "items": {
2319
+ "type": "string"
2320
+ },
2321
+ "type": "array"
2322
+ },
2323
+ "include": {
2324
+ "description": "Files included by this override.",
2325
+ "items": {
2326
+ "type": "string"
2327
+ },
2328
+ "type": "array"
2329
+ },
2330
+ "options": {
2331
+ "$ref": "#/definitions/effectLanguageServicePluginOverrideOptionsDefinition",
2332
+ "description": "Diagnostic option overrides applied when this override matches."
2333
+ }
2334
+ },
2335
+ "type": "object"
2336
+ },
2337
+ "effectLanguageServicePluginOverrideOptionsDefinition": {
2338
+ "additionalProperties": false,
2339
+ "properties": {
2340
+ "allowedDuplicatedPackages": {
2341
+ "description": "Scoped allow-list for duplicatePackage."
2342
+ },
2343
+ "diagnosticSeverity": {
2344
+ "$ref": "#/definitions/effectLanguageServicePluginDiagnosticSeverityDefinition",
2345
+ "description": "Severity overrides applied when this override matches."
2346
+ },
2347
+ "effectFn": {
2348
+ "description": "Scoped override for effectFn quickfix variants.",
2349
+ "uniqueItems": true
2350
+ },
2351
+ "extendedKeyDetection": {
2352
+ "description": "Scoped override for extended deterministic key detection."
2353
+ },
2354
+ "keyPatterns": {
2355
+ "description": "Scoped key pattern configuration for deterministicKeys.",
2356
+ "items": {
2357
+ "$ref": "#/definitions/effectLanguageServicePluginKeyPatternDefinition"
2358
+ },
2359
+ "type": "array"
2360
+ },
2361
+ "pipeableMinArgCount": {
2362
+ "description": "Minimum number of contiguous pipeable transformations to trigger missedPipeableOpportunity.",
2363
+ "minimum": 1
2364
+ }
2365
+ },
2366
+ "type": "object"
2367
+ },
2368
+ "effectLanguageServicePluginSeverityDefinition": {
2369
+ "enum": [
2370
+ "off",
2371
+ "error",
2372
+ "warning",
2373
+ "message",
2374
+ "suggestion"
2375
+ ],
2376
+ "type": "string"
2377
+ },
2378
+ "excludeDefinition": {
2379
+ "properties": {
2380
+ "exclude": {
2381
+ "description": "Specifies a list of files to be excluded from compilation. The 'exclude' property only affects the files included via the 'include' property and not the 'files' property. Glob patterns require TypeScript version 2.0 or later.",
2382
+ "items": {
2383
+ "type": "string"
2384
+ },
2385
+ "type": [
2386
+ "array",
2387
+ "null"
2388
+ ],
2389
+ "uniqueItems": true
2390
+ }
2391
+ }
2392
+ },
2393
+ "extendsDefinition": {
2394
+ "properties": {
2395
+ "extends": {
2396
+ "description": "Path to base configuration file to inherit from (requires TypeScript version 2.1 or later), or array of base files, with the rightmost files having the greater priority (requires TypeScript version 5.0 or later).",
2397
+ "oneOf": [
2398
+ {
2399
+ "default": "",
2400
+ "type": "string"
2401
+ },
2402
+ {
2403
+ "default": [],
2404
+ "items": {
2405
+ "type": "string"
2406
+ },
2407
+ "type": "array"
2408
+ }
2409
+ ]
2410
+ }
2411
+ }
2412
+ },
2413
+ "filesDefinition": {
2414
+ "properties": {
2415
+ "files": {
2416
+ "description": "If no 'files' or 'include' property is present in a tsconfig.json, the compiler defaults to including all files in the containing directory and subdirectories except those specified by 'exclude'. When a 'files' property is specified, only those files and those specified by 'include' are included.",
2417
+ "items": {
2418
+ "type": "string"
2419
+ },
2420
+ "type": [
2421
+ "array",
2422
+ "null"
2423
+ ],
2424
+ "uniqueItems": true
2425
+ }
2426
+ }
2427
+ },
2428
+ "includeDefinition": {
2429
+ "properties": {
2430
+ "include": {
2431
+ "description": "Specifies a list of glob patterns that match files to be included in compilation. If no 'files' or 'include' property is present in a tsconfig.json, the compiler defaults to including all files in the containing directory and subdirectories except those specified by 'exclude'. Requires TypeScript version 2.0 or later.",
2432
+ "items": {
2433
+ "type": "string"
2434
+ },
2435
+ "type": [
2436
+ "array",
2437
+ "null"
2438
+ ],
2439
+ "uniqueItems": true
2440
+ }
2441
+ }
2442
+ },
2443
+ "referencesDefinition": {
2444
+ "properties": {
2445
+ "references": {
2446
+ "description": "Referenced projects. Requires TypeScript version 3.0 or later.",
2447
+ "items": {
2448
+ "description": "Project reference.",
2449
+ "properties": {
2450
+ "path": {
2451
+ "description": "Path to referenced tsconfig or to folder containing tsconfig.",
2452
+ "type": "string"
2453
+ }
2454
+ },
2455
+ "type": "object"
2456
+ },
2457
+ "type": "array",
2458
+ "uniqueItems": true
2459
+ }
2460
+ }
2461
+ },
2462
+ "tsNodeDefinition": {
2463
+ "properties": {
2464
+ "ts-node": {
2465
+ "description": "ts-node options. See also: https://typestrong.org/ts-node/docs/configuration\n\nts-node offers TypeScript execution and REPL for node.js, with source map support.",
2466
+ "properties": {
2467
+ "compiler": {
2468
+ "default": "typescript",
2469
+ "description": "Specify a custom TypeScript compiler.",
2470
+ "type": [
2471
+ "string",
2472
+ "null"
2473
+ ]
2474
+ },
2475
+ "compilerHost": {
2476
+ "default": false,
2477
+ "description": "Use TypeScript's compiler host API instead of the language service API.",
2478
+ "type": [
2479
+ "boolean",
2480
+ "null"
2481
+ ]
2482
+ },
2483
+ "compilerOptions": {
2484
+ "additionalProperties": true,
2485
+ "allOf": [
2486
+ {
2487
+ "$ref": "#/definitions/compilerOptionsDefinition/properties/compilerOptions"
2488
+ }
2489
+ ],
2490
+ "description": "JSON object to merge with TypeScript `compilerOptions`.",
2491
+ "properties": {},
2492
+ "type": [
2493
+ "object",
2494
+ "null"
2495
+ ]
2496
+ },
2497
+ "emit": {
2498
+ "default": false,
2499
+ "description": "Emit output files into `.ts-node` directory.",
2500
+ "type": [
2501
+ "boolean",
2502
+ "null"
2503
+ ]
2504
+ },
2505
+ "esm": {
2506
+ "description": "Enable native ESM support.\n\nFor details, see https://typestrong.org/ts-node/docs/imports#native-ecmascript-modules",
2507
+ "type": [
2508
+ "boolean",
2509
+ "null"
2510
+ ]
2511
+ },
2512
+ "experimentalReplAwait": {
2513
+ "description": "Allows the usage of top level await in REPL.\n\nUses node's implementation which accomplishes this with an AST syntax transformation.\n\nEnabled by default when tsconfig target is es2018 or above. Set to false to disable.\n\n**Note**: setting to `true` when tsconfig target is too low will throw an Error. Leave as `undefined`\nto get default, automatic behavior.",
2514
+ "type": [
2515
+ "boolean",
2516
+ "null"
2517
+ ]
2518
+ },
2519
+ "experimentalResolver": {
2520
+ "description": "Enable experimental features that re-map imports and require calls to support:\n`baseUrl`, `paths`, `rootDirs`, `.js` to `.ts` file extension mappings,\n`outDir` to `rootDir` mappings for composite projects and monorepos.\n\nFor details, see https://github.com/TypeStrong/ts-node/issues/1514",
2521
+ "type": [
2522
+ "boolean",
2523
+ "null"
2524
+ ]
2525
+ },
2526
+ "experimentalSpecifierResolution": {
2527
+ "description": "Like node's `--experimental-specifier-resolution`, , but can also be set in your `tsconfig.json` for convenience.\n\nFor details, see https://nodejs.org/dist/latest-v18.x/docs/api/esm.html#customizing-esm-specifier-resolution-algorithm",
2528
+ "enum": [
2529
+ "explicit",
2530
+ "node"
2531
+ ],
2532
+ "type": [
2533
+ "string",
2534
+ "null"
2535
+ ]
2536
+ },
2537
+ "files": {
2538
+ "default": false,
2539
+ "description": "Load \"files\" and \"include\" from `tsconfig.json` on startup.\n\nDefault is to override `tsconfig.json` \"files\" and \"include\" to only include the entrypoint script.",
2540
+ "type": [
2541
+ "boolean",
2542
+ "null"
2543
+ ]
2544
+ },
2545
+ "ignore": {
2546
+ "default": [
2547
+ "(?:^|/)node_modules/"
2548
+ ],
2549
+ "description": "Paths which should not be compiled.\n\nEach string in the array is converted to a regular expression via `new RegExp()` and tested against source paths prior to compilation.\n\nSource paths are normalized to posix-style separators, relative to the directory containing `tsconfig.json` or to cwd if no `tsconfig.json` is loaded.\n\nDefault is to ignore all node_modules subdirectories.",
2550
+ "items": {
2551
+ "type": "string"
2552
+ },
2553
+ "type": [
2554
+ "array",
2555
+ "null"
2556
+ ]
2557
+ },
2558
+ "ignoreDiagnostics": {
2559
+ "description": "Ignore TypeScript warnings by diagnostic code.",
2560
+ "items": {
2561
+ "type": [
2562
+ "string",
2563
+ "number"
2564
+ ]
2565
+ },
2566
+ "type": [
2567
+ "array",
2568
+ "null"
2569
+ ]
2570
+ },
2571
+ "logError": {
2572
+ "default": false,
2573
+ "description": "Logs TypeScript errors to stderr instead of throwing exceptions.",
2574
+ "type": [
2575
+ "boolean",
2576
+ "null"
2577
+ ]
2578
+ },
2579
+ "moduleTypes": {
2580
+ "$ref": "#/definitions/tsNodeModuleTypes",
2581
+ "description": "Override certain paths to be compiled and executed as CommonJS or ECMAScript modules.\nWhen overridden, the tsconfig \"module\" and package.json \"type\" fields are overridden, and\nthe file extension is ignored.\nThis is useful if you cannot use .mts, .cts, .mjs, or .cjs file extensions;\nit achieves the same effect.\n\nEach key is a glob pattern following the same rules as tsconfig's \"include\" array.\nWhen multiple patterns match the same file, the last pattern takes precedence.\n\n`cjs` overrides matches files to compile and execute as CommonJS.\n`esm` overrides matches files to compile and execute as native ECMAScript modules.\n`package` overrides either of the above to default behavior, which obeys package.json \"type\" and\ntsconfig.json \"module\" options."
2582
+ },
2583
+ "preferTsExts": {
2584
+ "default": false,
2585
+ "description": "Re-order file extensions so that TypeScript imports are preferred.\n\nFor example, when both `index.js` and `index.ts` exist, enabling this option causes `require('./index')` to resolve to `index.ts` instead of `index.js`",
2586
+ "type": [
2587
+ "boolean",
2588
+ "null"
2589
+ ]
2590
+ },
2591
+ "pretty": {
2592
+ "default": false,
2593
+ "description": "Use pretty diagnostic formatter.",
2594
+ "type": [
2595
+ "boolean",
2596
+ "null"
2597
+ ]
2598
+ },
2599
+ "require": {
2600
+ "description": "Modules to require, like node's `--require` flag.\n\nIf specified in `tsconfig.json`, the modules will be resolved relative to the `tsconfig.json` file.\n\nIf specified programmatically, each input string should be pre-resolved to an absolute path for\nbest results.",
2601
+ "items": {
2602
+ "type": "string"
2603
+ },
2604
+ "type": [
2605
+ "array",
2606
+ "null"
2607
+ ]
2608
+ },
2609
+ "scope": {
2610
+ "default": false,
2611
+ "description": "Scope compiler to files within `scopeDir`.",
2612
+ "type": [
2613
+ "boolean",
2614
+ "null"
2615
+ ]
2616
+ },
2617
+ "scopeDir": {
2618
+ "default": "First of: `tsconfig.json` \"rootDir\" if specified, directory containing `tsconfig.json`, or cwd if no `tsconfig.json` is loaded.",
2619
+ "type": [
2620
+ "string",
2621
+ "null"
2622
+ ]
2623
+ },
2624
+ "skipIgnore": {
2625
+ "default": false,
2626
+ "description": "Skip ignore check, so that compilation will be attempted for all files with matching extensions.",
2627
+ "type": [
2628
+ "boolean",
2629
+ "null"
2630
+ ]
2631
+ },
2632
+ "swc": {
2633
+ "description": "Transpile with swc instead of the TypeScript compiler, and skip typechecking.\n\nEquivalent to setting both `transpileOnly: true` and `transpiler: 'ts-node/transpilers/swc'`\n\nFor complete instructions: https://typestrong.org/ts-node/docs/transpilers",
2634
+ "type": [
2635
+ "boolean",
2636
+ "null"
2637
+ ]
2638
+ },
2639
+ "transpileOnly": {
2640
+ "default": false,
2641
+ "description": "Use TypeScript's faster `transpileModule`.",
2642
+ "type": [
2643
+ "boolean",
2644
+ "null"
2645
+ ]
2646
+ },
2647
+ "transpiler": {
2648
+ "anyOf": [
2649
+ {
2650
+ "items": [
2651
+ {
2652
+ "type": [
2653
+ "string",
2654
+ "null"
2655
+ ]
2656
+ },
2657
+ {
2658
+ "additionalProperties": true,
2659
+ "properties": {},
2660
+ "type": [
2661
+ "object",
2662
+ "null"
2663
+ ]
2664
+ }
2665
+ ],
2666
+ "maxItems": 2,
2667
+ "minItems": 2,
2668
+ "type": [
2669
+ "array",
2670
+ "null"
2671
+ ]
2672
+ },
2673
+ {
2674
+ "type": [
2675
+ "string",
2676
+ "null"
2677
+ ]
2678
+ }
2679
+ ],
2680
+ "description": "Specify a custom transpiler for use with transpileOnly"
2681
+ },
2682
+ "typeCheck": {
2683
+ "default": true,
2684
+ "description": "**DEPRECATED** Specify type-check is enabled (e.g. `transpileOnly == false`).",
2685
+ "type": [
2686
+ "boolean",
2687
+ "null"
2688
+ ]
2689
+ }
2690
+ },
2691
+ "type": [
2692
+ "object",
2693
+ "null"
2694
+ ]
2695
+ }
2696
+ }
2697
+ },
2698
+ "tsNodeModuleTypes": {
2699
+ "type": [
2700
+ "object",
2701
+ "null"
2702
+ ]
2703
+ },
2704
+ "typeAcquisitionDefinition": {
2705
+ "properties": {
2706
+ "typeAcquisition": {
2707
+ "description": "Auto type (.d.ts) acquisition options for this project. Requires TypeScript version 2.1 or later.",
2708
+ "properties": {
2709
+ "enable": {
2710
+ "default": false,
2711
+ "description": "Enable auto type acquisition",
2712
+ "type": [
2713
+ "boolean",
2714
+ "null"
2715
+ ]
2716
+ },
2717
+ "exclude": {
2718
+ "description": "Specifies a list of type declarations to be excluded from auto type acquisition. Ex. [\"jquery\", \"lodash\"]",
2719
+ "items": {
2720
+ "type": "string"
2721
+ },
2722
+ "type": [
2723
+ "array",
2724
+ "null"
2725
+ ],
2726
+ "uniqueItems": true
2727
+ },
2728
+ "include": {
2729
+ "description": "Specifies a list of type declarations to be included in auto type acquisition. Ex. [\"jquery\", \"lodash\"]",
2730
+ "items": {
2731
+ "type": "string"
2732
+ },
2733
+ "type": [
2734
+ "array",
2735
+ "null"
2736
+ ],
2737
+ "uniqueItems": true
2738
+ }
2739
+ },
2740
+ "type": [
2741
+ "object",
2742
+ "null"
2743
+ ]
2744
+ }
2745
+ }
2746
+ },
2747
+ "watchOptionsDefinition": {
2748
+ "properties": {
2749
+ "watchOptions": {
2750
+ "description": "Settings for the watch mode in TypeScript.",
2751
+ "properties": {
2752
+ "excludeDirectories": {
2753
+ "description": "Remove a list of directories from the watch process.",
2754
+ "items": {
2755
+ "type": "string"
2756
+ },
2757
+ "markdownDescription": "Remove a list of directories from the watch process.\n\nSee more: https://www.typescriptlang.org/tsconfig#excludeDirectories",
2758
+ "type": [
2759
+ "array",
2760
+ "null"
2761
+ ],
2762
+ "uniqueItems": true
2763
+ },
2764
+ "excludeFiles": {
2765
+ "description": "Remove a list of files from the watch mode's processing.",
2766
+ "items": {
2767
+ "type": "string"
2768
+ },
2769
+ "markdownDescription": "Remove a list of files from the watch mode's processing.\n\nSee more: https://www.typescriptlang.org/tsconfig#excludeFiles",
2770
+ "type": [
2771
+ "array",
2772
+ "null"
2773
+ ],
2774
+ "uniqueItems": true
2775
+ },
2776
+ "fallbackPolling": {
2777
+ "description": "Specify what approach the watcher should use if the system runs out of native file watchers.",
2778
+ "markdownDescription": "Specify what approach the watcher should use if the system runs out of native file watchers.\n\nSee more: https://www.typescriptlang.org/tsconfig#fallbackPolling",
2779
+ "type": [
2780
+ "string",
2781
+ "null"
2782
+ ]
2783
+ },
2784
+ "force": {
2785
+ "description": "~",
2786
+ "type": [
2787
+ "string",
2788
+ "null"
2789
+ ]
2790
+ },
2791
+ "synchronousWatchDirectory": {
2792
+ "description": "Synchronously call callbacks and update the state of directory watchers on platforms that don`t support recursive watching natively.",
2793
+ "markdownDescription": "Synchronously call callbacks and update the state of directory watchers on platforms that don`t support recursive watching natively.\n\nSee more: https://www.typescriptlang.org/tsconfig#synchronousWatchDirectory",
2794
+ "type": [
2795
+ "boolean",
2796
+ "null"
2797
+ ]
2798
+ },
2799
+ "watchDirectory": {
2800
+ "description": "Specify how directories are watched on systems that lack recursive file-watching functionality.",
2801
+ "markdownDescription": "Specify how directories are watched on systems that lack recursive file-watching functionality.\n\nSee more: https://www.typescriptlang.org/tsconfig#watchDirectory",
2802
+ "type": [
2803
+ "string",
2804
+ "null"
2805
+ ]
2806
+ },
2807
+ "watchFile": {
2808
+ "description": "Specify how the TypeScript watch mode works.",
2809
+ "markdownDescription": "Specify how the TypeScript watch mode works.\n\nSee more: https://www.typescriptlang.org/tsconfig#watchFile",
2810
+ "type": [
2811
+ "string",
2812
+ "null"
2813
+ ]
2814
+ }
2815
+ },
2816
+ "type": [
2817
+ "object",
2818
+ "null"
2819
+ ]
2820
+ }
2821
+ }
2822
+ }
2823
+ },
2824
+ "id": "https://json.schemastore.org/tsconfig",
2825
+ "title": "JSON schema for the TypeScript compiler's configuration file",
2826
+ "type": "object"
2827
+ }