You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
type: "string"|"number"|"boolean"|"object"|"list"|Map<string,number|string>;// a value of a primitive type, or an object literal mapping named values to actual values
6962
+
type: "string"|"number"|"boolean"|"object"|"list"|"string | object"|Map<string,number|string>;// a value of a primitive type, or an object literal mapping named values to actual values
6957
6963
isFilePath?: boolean;// True if option value is a path or fileName
6958
6964
shortName?: string;// A short mnemonic for convenience - for instance, 'h' can be used in place of 'help'
6959
6965
description?: DiagnosticMessage;// The message describing what the command line switch does.
affectsDeclarationPath?: true;// true if the options affects declaration file path computed
6974
6980
affectsBuildInfo?: true;// true if this options should be emitted in buildInfo
6975
6981
transpileOptionValue?: boolean|undefined;// If set this means that the option should be set to this value when transpiling
6976
-
extraValidation?: (value: CompilerOptionsValue)=>[DiagnosticMessage, ...string[]]|undefined;// Additional validation to be performed for the value to be valid
6982
+
extraValidation?: CommandLineOptionExtraValidation;// Additional validation to be performed for the value to be valid
0 commit comments