File tree Expand file tree Collapse file tree 1 file changed +16
-4
lines changed Expand file tree Collapse file tree 1 file changed +16
-4
lines changed Original file line number Diff line number Diff line change @@ -6338,8 +6338,20 @@ namespace ts {
6338
6338
}
6339
6339
6340
6340
/* @internal */
6341
- export interface CommandLineOptionOfPrimitiveType extends CommandLineOptionBase {
6342
- type : "string" | "number" | "boolean" ;
6341
+ export interface CommandLineOptionOfStringType extends CommandLineOptionBase {
6342
+ type : "string" ;
6343
+ }
6344
+
6345
+ /* @internal */
6346
+ export interface CommandLineOptionOfNumberType extends CommandLineOptionBase {
6347
+ type : "number" ;
6348
+ defaultValueDescription ?: `${number } ` | DiagnosticMessage ;
6349
+ }
6350
+
6351
+ /* @internal */
6352
+ export interface CommandLineOptionOfBooleanType extends CommandLineOptionBase {
6353
+ type : "boolean" ;
6354
+ defaultValueDescription ?: "true" | "false" | "undefined" | DiagnosticMessage ;
6343
6355
}
6344
6356
6345
6357
/* @internal */
@@ -6371,11 +6383,11 @@ namespace ts {
6371
6383
/* @internal */
6372
6384
export interface CommandLineOptionOfListType extends CommandLineOptionBase {
6373
6385
type : "list" ;
6374
- element : CommandLineOptionOfCustomType | CommandLineOptionOfPrimitiveType | TsConfigOnlyOption ;
6386
+ element : CommandLineOptionOfCustomType | CommandLineOptionOfStringType | CommandLineOptionOfNumberType | CommandLineOptionOfBooleanType | TsConfigOnlyOption ;
6375
6387
}
6376
6388
6377
6389
/* @internal */
6378
- export type CommandLineOption = CommandLineOptionOfCustomType | CommandLineOptionOfPrimitiveType | TsConfigOnlyOption | CommandLineOptionOfListType ;
6390
+ export type CommandLineOption = CommandLineOptionOfCustomType | CommandLineOptionOfStringType | CommandLineOptionOfNumberType | CommandLineOptionOfBooleanType | TsConfigOnlyOption | CommandLineOptionOfListType ;
6379
6391
6380
6392
/* @internal */
6381
6393
export const enum CharacterCodes {
You can’t perform that action at this time.
0 commit comments