@@ -122,15 +122,17 @@ const libEntries: [string, string][] = [
122
122
* An array of supported "lib" reference file names used to determine the order for inclusion
123
123
* when referenced, as well as for spelling suggestions. This ensures the correct ordering for
124
124
* overload resolution when a type declared in one lib is extended by another.
125
+ *
126
+ * @internal
125
127
*/
126
- /** @internal */
127
128
export const libs = libEntries . map ( entry => entry [ 0 ] ) ;
128
129
129
130
/**
130
131
* A map of lib names to lib files. This map is used both for parsing the "lib" command line
131
132
* option as well as for resolving lib reference directives.
133
+ *
134
+ * @internal
132
135
*/
133
- /** @internal */
134
136
export const libMap = new Map ( libEntries ) ;
135
137
136
138
// Watch related options
@@ -2142,8 +2144,9 @@ export function convertToObject(sourceFile: JsonSourceFile, errors: Push<Diagnos
2142
2144
* Convert the json syntax tree into the json value and report errors
2143
2145
* This returns the json value (apart from checking errors) only if returnValue provided is true.
2144
2146
* Otherwise it just checks the errors and returns undefined
2147
+ *
2148
+ * @internal
2145
2149
*/
2146
- /** @internal */
2147
2150
export function convertToObjectWorker (
2148
2151
sourceFile : JsonSourceFile ,
2149
2152
rootExpression : Expression | undefined ,
@@ -2389,8 +2392,9 @@ export interface ConvertToTSConfigHost {
2389
2392
* @param configParseResult options to be generated into tsconfig.json
2390
2393
* @param configFileName name of the parsed config file - output paths will be generated relative to this
2391
2394
* @param host provides current directory and case sensitivity services
2395
+ *
2396
+ * @internal
2392
2397
*/
2393
- /** @internal */
2394
2398
export function convertToTSConfig ( configParseResult : ParsedCommandLine , configFileName : string , host : ConvertToTSConfigHost ) : TSConfig {
2395
2399
const getCanonicalFileName = createGetCanonicalFileName ( host . useCaseSensitiveFileNames ) ;
2396
2400
const files = map (
@@ -2586,8 +2590,9 @@ function getSerializedCompilerOption(options: CompilerOptions): ESMap<string, Co
2586
2590
* Generate tsconfig configuration when running command line "--init"
2587
2591
* @param options commandlineOptions to be generated into tsconfig.json
2588
2592
* @param fileNames array of filenames to be generated into tsconfig.json
2593
+ *
2594
+ * @internal
2589
2595
*/
2590
- /** @internal */
2591
2596
export function generateTSConfig ( options : CompilerOptions , fileNames : readonly string [ ] , newLine : string ) : string {
2592
2597
const compilerOptionsMap = getSerializedCompilerOption ( options ) ;
2593
2598
return writeConfigurations ( ) ;
@@ -3407,8 +3412,9 @@ const wildcardDirectoryPattern = /^[^*?]*(?=\/[^/]*[*?])/;
3407
3412
* @param options Compiler options.
3408
3413
* @param host The host used to resolve files and directories.
3409
3414
* @param extraFileExtensions optionaly file extra file extension information from host
3415
+ *
3416
+ * @internal
3410
3417
*/
3411
- /** @internal */
3412
3418
export function getFileNamesFromConfigSpecs (
3413
3419
configFileSpecs : ConfigFileSpecs ,
3414
3420
basePath : string ,
@@ -3726,8 +3732,9 @@ function removeWildcardFilesWithLowerPriorityExtension(file: string, wildcardFil
3726
3732
/**
3727
3733
* Produces a cleaned version of compiler options with personally identifying info (aka, paths) removed.
3728
3734
* Also converts enum values back to strings.
3735
+ *
3736
+ * @internal
3729
3737
*/
3730
- /** @internal */
3731
3738
export function convertCompilerOptionsForTelemetry ( opts : CompilerOptions ) : CompilerOptions {
3732
3739
const out : CompilerOptions = { } ;
3733
3740
for ( const key in opts ) {
0 commit comments