-
Notifications
You must be signed in to change notification settings - Fork 609
/
Copy pathExtractorConfig.ts
680 lines (581 loc) · 26.3 KB
/
ExtractorConfig.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
// See LICENSE in the project root for license information.
import * as path from 'path';
import * as resolve from 'resolve';
import lodash = require('lodash');
import {
JsonFile,
JsonSchema,
FileSystem,
PackageJsonLookup,
INodePackageJson,
PackageName,
Text,
InternalError,
Path
} from '@microsoft/node-core-library';
import {
IConfigFile,
IExtractorMessagesConfig
} from './IConfigFile';
import { PackageMetadataManager } from '../analyzer/PackageMetadataManager';
/**
* Tokens used during variable expansion of path fields from api-extractor.json.
*/
interface IExtractorConfigTokenContext {
/**
* The `<unscopedPackageName>` token returns the project's NPM package name, without any NPM scope.
* If there is no associated package.json file, then the value is `unknown-package`.
*
* Example: `my-project`
*/
unscopedPackageName: string;
/**
* The `<packageName>` token returns the project's full NPM package name including any NPM scope.
* If there is no associated package.json file, then the value is `unknown-package`.
*
* Example: `@scope/my-project`
*/
packageName: string;
projectFolder: string;
}
/**
* Options for {@link ExtractorConfig.prepare}.
*
* @public
*/
export interface IExtractorConfigPrepareOptions {
/**
* A configuration object as returned by {@link ExtractorConfig.loadFile}.
*/
configObject: IConfigFile;
/**
* The absolute path of the file that the `configObject` object was loaded from. This is used for error messages
* and when probing for `tsconfig.json`.
*
* @remarks
*
* If this is omitted, then the `projectFolder` must not be specified using the `<lookup>` token.
*/
configObjectFullPath: string | undefined;
/**
* The parsed package.json file for the working package, or undefined if API Extractor was invoked without
* a package.json file.
*
* @remarks
*
* If omitted, then the `<unscopedPackageName>` and `<packageName>` tokens will have default values.
*/
packageJson?: INodePackageJson | undefined;
/**
* The absolute path of the file that the `packageJson` object was loaded from, or undefined if API Extractor
* was invoked without a package.json file.
*
* @remarks
*
* This is used for error messages and when resolving paths found in package.json.
*
* If `packageJsonFullPath` is specified but `packageJson` is omitted, the file will be loaded automatically.
*/
packageJsonFullPath: string | undefined;
}
interface IExtractorConfigParameters {
projectFolder: string;
packageJson: INodePackageJson | undefined;
packageJsonFullPath: string | undefined;
mainEntryPointFile: string;
overrideTsconfig: { } | undefined;
skipLibCheck: boolean;
apiReportEnabled: boolean;
reportFilePath: string;
reportTempFilePath: string;
docModelEnabled: boolean;
apiJsonFilePath: string;
rollupEnabled: boolean;
untrimmedFilePath: string;
betaTrimmedFilePath: string;
publicTrimmedFilePath: string;
tsdocMetadataEnabled: boolean;
tsdocMetadataFilePath: string;
messages: IExtractorMessagesConfig;
testMode: boolean;
}
/**
* The `ExtractorConfig` class loads, validates, interprets, and represents the api-extractor.json config file.
* @public
*/
export class ExtractorConfig {
/**
* The JSON Schema for API Extractor config file (api-extractor.schema.json).
*/
public static readonly jsonSchema: JsonSchema = JsonSchema.fromFile(
path.join(__dirname, '../schemas/api-extractor.schema.json'));
/**
* The config file name "api-extractor.json".
*/
public static readonly FILENAME: string = 'api-extractor.json';
private static readonly _defaultConfig: Partial<IConfigFile> = JsonFile.load(path.join(__dirname,
'../schemas/api-extractor-defaults.json'));
private static readonly _declarationFileExtensionRegExp: RegExp = /\.d\.ts$/i;
/** {@inheritDoc IConfigFile.projectFolder} */
public readonly projectFolder: string;
/**
* The parsed package.json file for the working package, or undefined if API Extractor was invoked without
* a package.json file.
*/
public readonly packageJson: INodePackageJson | undefined;
/**
* The absolute path of the file that package.json was loaded from, or undefined if API Extractor was invoked without
* a package.json file.
*/
public readonly packageJsonFullPath: string | undefined;
/** {@inheritDoc IConfigFile.mainEntryPointFile} */
public readonly mainEntryPointFile: string;
/** {@inheritDoc IConfigCompiler.overrideTsconfig} */
public readonly overrideTsconfig: { } | undefined;
/** {@inheritDoc IConfigCompiler.skipLibCheck} */
public readonly skipLibCheck: boolean;
/** {@inheritDoc IConfigApiReport.enabled} */
public readonly apiReportEnabled: boolean;
/** The `reportFolder` path combined with the `reportFileName`. */
public readonly reportFilePath: string;
/** The `reportTempFolder` path combined with the `reportFileName`. */
public readonly reportTempFilePath: string;
/** {@inheritDoc IConfigDocModel.enabled} */
public readonly docModelEnabled: boolean;
/** {@inheritDoc IConfigDocModel.apiJsonFilePath} */
public readonly apiJsonFilePath: string;
/** {@inheritDoc IConfigDtsRollup.enabled} */
public readonly rollupEnabled: boolean;
/** {@inheritDoc IConfigDtsRollup.untrimmedFilePath} */
public readonly untrimmedFilePath: string;
/** {@inheritDoc IConfigDtsRollup.betaTrimmedFilePath} */
public readonly betaTrimmedFilePath: string;
/** {@inheritDoc IConfigDtsRollup.publicTrimmedFilePath} */
public readonly publicTrimmedFilePath: string;
/** {@inheritDoc IConfigTsdocMetadata.enabled} */
public readonly tsdocMetadataEnabled: boolean;
/** {@inheritDoc IConfigTsdocMetadata.tsdocMetadataFilePath} */
public readonly tsdocMetadataFilePath: string;
/** {@inheritDoc IConfigFile.messages} */
public readonly messages: IExtractorMessagesConfig;
/** {@inheritDoc IConfigFile.testMode} */
public readonly testMode: boolean;
private constructor(parameters: IExtractorConfigParameters) {
this.projectFolder = parameters.projectFolder;
this.packageJson = parameters.packageJson;
this.packageJsonFullPath = parameters.packageJsonFullPath;
this.mainEntryPointFile = parameters.mainEntryPointFile;
this.overrideTsconfig = parameters.overrideTsconfig;
this.skipLibCheck = parameters.skipLibCheck;
this.apiReportEnabled = parameters.apiReportEnabled;
this.reportFilePath = parameters.reportFilePath;
this.reportTempFilePath = parameters.reportTempFilePath;
this.docModelEnabled = parameters.docModelEnabled;
this.apiJsonFilePath = parameters.apiJsonFilePath;
this.rollupEnabled = parameters.rollupEnabled;
this.untrimmedFilePath = parameters.untrimmedFilePath;
this.betaTrimmedFilePath = parameters.betaTrimmedFilePath;
this.publicTrimmedFilePath = parameters.publicTrimmedFilePath;
this.tsdocMetadataEnabled = parameters.tsdocMetadataEnabled;
this.tsdocMetadataFilePath = parameters.tsdocMetadataFilePath;
this.messages = parameters.messages;
this.testMode = parameters.testMode;
}
/**
* Returns a simplified file path for use in error messages.
* @internal
*/
public _getShortFilePath(absolutePath: string): string {
if (!path.isAbsolute(absolutePath)) {
throw new InternalError('Expected absolute path: ' + absolutePath);
}
if (Path.isUnderOrEqual(absolutePath, this.projectFolder)) {
return path.relative(this.projectFolder, absolutePath).replace(/\\/g, '/');
}
return absolutePath;
}
/**
* Loads the api-extractor.json config file from the specified file path, and prepares an `ExtractorConfig` object.
*
* @remarks
* Loads the api-extractor.json config file from the specified file path. If the "extends" field is present,
* the referenced file(s) will be merged. For any omitted fields, the API Extractor default values are merged.
*
* The result is prepared using `ExtractorConfig.prepare()`.
*/
public static loadFileAndPrepare(configJsonFilePath: string): ExtractorConfig {
const configObjectFullPath: string = path.resolve(configJsonFilePath);
const configObject: IConfigFile = ExtractorConfig.loadFile(configObjectFullPath);
const packageJsonLookup: PackageJsonLookup = new PackageJsonLookup();
const packageJsonFullPath: string | undefined = packageJsonLookup.tryGetPackageJsonFilePathFor(
configObjectFullPath);
const extractorConfig: ExtractorConfig = ExtractorConfig.prepare({
configObject,
configObjectFullPath,
packageJsonFullPath
});
return extractorConfig;
}
/**
* Performs only the first half of {@link ExtractorConfig.loadFileAndPrepare}, providing an opportunity to
* modify the object before it is passed to {@link ExtractorConfig.prepare}.
*
* @remarks
* Loads the api-extractor.json config file from the specified file path. If the "extends" field is present,
* the referenced file(s) will be merged. For any omitted fields, the API Extractor default values are merged.
*/
public static loadFile(jsonFilePath: string): IConfigFile {
// Set to keep track of config files which have been processed.
const visitedPaths: Set<string> = new Set<string>();
let currentConfigFilePath: string = path.resolve(process.cwd(), jsonFilePath);
let configObject: Partial<IConfigFile> = { };
try {
do {
// Check if this file was already processed.
if (visitedPaths.has(currentConfigFilePath)) {
throw new Error(`The API Extractor config files contain a cycle. "${currentConfigFilePath}"`
+ ` is included twice. Please check the "extends" values in config files.`);
}
visitedPaths.add(currentConfigFilePath);
const currentConfigFolderPath: string = path.dirname(currentConfigFilePath);
// Load the extractor config defined in extends property.
const baseConfig: IConfigFile = JsonFile.load(currentConfigFilePath);
let extendsField: string = baseConfig.extends || '';
// Delete the "extends" field so it doesn't get merged
delete baseConfig.extends;
if (extendsField) {
if (extendsField.match(/^\.\.?[\\/]/)) {
// EXAMPLE: "./subfolder/api-extractor-base.json"
extendsField = path.resolve(currentConfigFolderPath, extendsField);
} else {
// EXAMPLE: "my-package/api-extractor-base.json"
//
// Resolve "my-package" from the perspective of the current folder.
try {
extendsField = resolve.sync(
extendsField,
{
basedir: currentConfigFolderPath
}
);
} catch (e) {
throw new Error(`Error resolving NodeJS path "${extendsField}": ${e.message}`);
}
}
}
// This step has to be performed in advance, since the currentConfigFolderPath information will be lost
// after lodash.merge() is performed.
ExtractorConfig._resolveConfigFileRelativePaths(baseConfig, currentConfigFolderPath);
// Merge extractorConfig into baseConfig, mutating baseConfig
lodash.merge(baseConfig, configObject);
configObject = baseConfig;
currentConfigFilePath = extendsField;
} while (currentConfigFilePath);
} catch (e) {
throw new Error(`Error loading ${currentConfigFilePath}:\n` + e.message);
}
// Lastly, apply the defaults
configObject = lodash.merge(lodash.cloneDeep(ExtractorConfig._defaultConfig), configObject);
ExtractorConfig.jsonSchema.validateObject(configObject, jsonFilePath);
// The schema validation should ensure that this object conforms to IConfigFile
return configObject as IConfigFile;
}
private static _resolveConfigFileRelativePaths(configFile: IConfigFile, currentConfigFolderPath: string): void {
if (configFile.projectFolder) {
configFile.projectFolder = ExtractorConfig._resolveConfigFileRelativePath(
'projectFolder', configFile.projectFolder, currentConfigFolderPath);
}
if (configFile.mainEntryPointFile) {
configFile.mainEntryPointFile = ExtractorConfig._resolveConfigFileRelativePath(
'mainEntryPointFile', configFile.mainEntryPointFile, currentConfigFolderPath);
}
if (configFile.apiReport) {
if (configFile.apiReport.reportFolder) {
configFile.apiReport.reportFolder = ExtractorConfig._resolveConfigFileRelativePath(
'reportFolder', configFile.apiReport.reportFolder, currentConfigFolderPath);
}
if (configFile.apiReport.reportTempFolder) {
configFile.apiReport.reportTempFolder = ExtractorConfig._resolveConfigFileRelativePath(
'reportTempFolder', configFile.apiReport.reportTempFolder, currentConfigFolderPath);
}
}
if (configFile.docModel) {
if (configFile.docModel.apiJsonFilePath) {
configFile.docModel.apiJsonFilePath = ExtractorConfig._resolveConfigFileRelativePath(
'apiJsonFilePath', configFile.docModel.apiJsonFilePath, currentConfigFolderPath);
}
}
if (configFile.dtsRollup) {
if (configFile.dtsRollup.untrimmedFilePath) {
configFile.dtsRollup.untrimmedFilePath = ExtractorConfig._resolveConfigFileRelativePath(
'untrimmedFilePath', configFile.dtsRollup.untrimmedFilePath, currentConfigFolderPath);
}
if (configFile.dtsRollup.betaTrimmedFilePath) {
configFile.dtsRollup.betaTrimmedFilePath = ExtractorConfig._resolveConfigFileRelativePath(
'betaTrimmedFilePath', configFile.dtsRollup.betaTrimmedFilePath, currentConfigFolderPath);
}
if (configFile.dtsRollup.publicTrimmedFilePath) {
configFile.dtsRollup.publicTrimmedFilePath = ExtractorConfig._resolveConfigFileRelativePath(
'publicTrimmedFilePath', configFile.dtsRollup.publicTrimmedFilePath, currentConfigFolderPath);
}
}
if (configFile.tsdocMetadata) {
if (configFile.tsdocMetadata.tsdocMetadataFilePath) {
configFile.tsdocMetadata.tsdocMetadataFilePath = ExtractorConfig._resolveConfigFileRelativePath(
'tsdocMetadataFilePath', configFile.tsdocMetadata.tsdocMetadataFilePath, currentConfigFolderPath);
}
}
}
private static _resolveConfigFileRelativePath(fieldName: string, fieldValue: string,
currentConfigFolderPath: string): string {
if (!path.isAbsolute(fieldValue)) {
if (fieldValue.indexOf('<projectFolder>') !== 0) {
// If the path is not absolute and does not start with "<projectFolder>", then resolve it relative
// to the folder of the config file that it appears in
return path.join(currentConfigFolderPath, fieldValue);
}
}
return fieldValue;
}
/**
* Prepares an `ExtractorConfig` object using a configuration that is provided as a runtime object,
* rather than reading it from disk. This allows configurations to be constructed programmatically,
* loaded from an alternate source, and/or customized after loading.
*/
public static prepare(options: IExtractorConfigPrepareOptions): ExtractorConfig {
const filenameForErrors: string = options.configObjectFullPath || 'the configuration object';
const configObject: Partial<IConfigFile> = options.configObject;
if (configObject.extends) {
throw new Error('The IConfigFile.extends field must be expanded before calling ExtractorConfig.prepare()');
}
if (options.configObjectFullPath) {
if (!path.isAbsolute(options.configObjectFullPath)) {
throw new Error('configObjectFullPath must be an absolute path');
}
}
ExtractorConfig.jsonSchema.validateObject(configObject, filenameForErrors);
let packageJson: INodePackageJson | undefined = undefined;
const packageJsonFullPath: string | undefined = options.packageJsonFullPath;
if (packageJsonFullPath) {
if (!/.json$/i.test(packageJsonFullPath)) {
// Catch common mistakes e.g. where someone passes a folder path instead of a file path
throw new Error('The packageJsonFullPath does not have a .json file extension');
}
if (!path.isAbsolute(packageJsonFullPath)) {
throw new Error('packageJsonFullPath must be an absolute path');
}
if (!options.packageJson) {
const packageJsonLookup: PackageJsonLookup = new PackageJsonLookup();
packageJson = packageJsonLookup.loadNodePackageJson(packageJsonFullPath);
}
}
try {
if (!configObject.compiler) {
// A merged configuration should have this
throw new Error('The "compiler" section is missing');
}
if (!configObject.projectFolder) {
// A merged configuration should have this
throw new Error('The "projectFolder" field is missing');
}
let projectFolder: string;
if (configObject.projectFolder.trim() === '<lookup>') {
if (!options.configObjectFullPath) {
throw new Error('The "<lookup>" token cannot be expanded because configObjectFullPath was not specified');
}
// "The default value for `projectFolder` is the token `<lookup>`, which means the folder is determined
// by traversing parent folders, starting from the folder containing api-extractor.json, and stopping
// at the first folder that contains a tsconfig.json file. If a tsconfig.json file cannot be found in
// this way, then an error will be reported."
let currentFolder: string = path.dirname(options.configObjectFullPath);
for (; ; ) {
const tsconfigPath: string = path.join(currentFolder, 'tsconfig.json');
if (FileSystem.exists(tsconfigPath)) {
projectFolder = currentFolder;
break;
}
const parentFolder: string = path.dirname(currentFolder);
if (parentFolder === '' || parentFolder === currentFolder) {
throw new Error('The projectFolder was set to "<lookup>", but a tsconfig.json file cannot be'
+ ' found in this folder or any parent folder.');
}
currentFolder = parentFolder;
}
} else {
ExtractorConfig._rejectAnyTokensInPath(configObject.projectFolder, 'projectFolder');
if (!FileSystem.exists(configObject.projectFolder)) {
throw new Error('The specified projectFolder does not exist: ' + configObject.projectFolder);
}
projectFolder = configObject.projectFolder;
}
const tokenContext: IExtractorConfigTokenContext = {
unscopedPackageName: 'unknown-package',
packageName: 'unknown-package',
projectFolder: projectFolder
};
if (packageJson) {
tokenContext.packageName = packageJson.name;
tokenContext.unscopedPackageName = PackageName.getUnscopedName(packageJson.name);
}
if (!configObject.mainEntryPointFile) {
// A merged configuration should have this
throw new Error('mainEntryPointFile is missing');
}
const mainEntryPointFile: string = ExtractorConfig._resolvePathWithTokens('mainEntryPointFile',
configObject.mainEntryPointFile, tokenContext);
if (!ExtractorConfig.hasDtsFileExtension(mainEntryPointFile)) {
throw new Error('The mainEntryPointFile is not a declaration file: ' + mainEntryPointFile);
}
if (!FileSystem.exists(mainEntryPointFile)) {
throw new Error('The mainEntryPointFile does not exist: ' + mainEntryPointFile);
}
let apiReportEnabled: boolean = false;
let reportFilePath: string = '';
let reportTempFilePath: string = '';
if (configObject.apiReport) {
apiReportEnabled = !!configObject.apiReport.enabled;
const reportFilename: string = ExtractorConfig._expandStringWithTokens('reportFileName',
configObject.apiReport.reportFileName || '', tokenContext);
if (!reportFilename) {
// A merged configuration should have this
throw new Error('reportFilename is missing');
}
if (reportFilename.indexOf('/') >= 0 || reportFilename.indexOf('\\') >= 0) {
// A merged configuration should have this
throw new Error(`The reportFilename contains invalid characters: "${reportFilename}"`);
}
const reportFolder: string = ExtractorConfig._resolvePathWithTokens('reportFolder',
configObject.apiReport.reportFolder, tokenContext);
const reportTempFolder: string = ExtractorConfig._resolvePathWithTokens('reportTempFolder',
configObject.apiReport.reportTempFolder, tokenContext);
reportFilePath = path.join(reportFolder, reportFilename);
reportTempFilePath = path.join(reportTempFolder, reportFilename);
}
let docModelEnabled: boolean = false;
let apiJsonFilePath: string = '';
if (configObject.docModel) {
docModelEnabled = !!configObject.docModel.enabled;
apiJsonFilePath = ExtractorConfig._resolvePathWithTokens('apiJsonFilePath',
configObject.docModel.apiJsonFilePath, tokenContext);
}
let tsdocMetadataEnabled: boolean = false;
let tsdocMetadataFilePath: string = '';
if (configObject.tsdocMetadata) {
tsdocMetadataEnabled = !!configObject.tsdocMetadata.enabled;
if (tsdocMetadataEnabled) {
tsdocMetadataFilePath = configObject.tsdocMetadata.tsdocMetadataFilePath || '';
if (tsdocMetadataFilePath.trim() === '<lookup>') {
if (!packageJson) {
throw new Error('The "<lookup>" token cannot be used with compiler.projectFolder because'
+ 'the "packageJson" option was not provided');
}
if (!packageJsonFullPath) {
throw new Error('The "<lookup>" token cannot be used with compiler.projectFolder because'
+ 'the "packageJsonFullPath" option was not provided');
}
tsdocMetadataFilePath = PackageMetadataManager.resolveTsdocMetadataPath(
path.dirname(packageJsonFullPath),
packageJson
);
} else {
tsdocMetadataFilePath = ExtractorConfig._resolvePathWithTokens('tsdocMetadataFilePath',
configObject.tsdocMetadata.tsdocMetadataFilePath, tokenContext);
}
if (!tsdocMetadataFilePath) {
throw new Error('The tsdocMetadata.enabled was specified, but tsdocMetadataFilePath is not specified');
}
}
}
let rollupEnabled: boolean = false;
let untrimmedFilePath: string = '';
let betaTrimmedFilePath: string = '';
let publicTrimmedFilePath: string = '';
if (configObject.dtsRollup) {
rollupEnabled = !!configObject.dtsRollup.enabled;
untrimmedFilePath = ExtractorConfig._resolvePathWithTokens('untrimmedFilePath',
configObject.dtsRollup.untrimmedFilePath, tokenContext);
betaTrimmedFilePath = ExtractorConfig._resolvePathWithTokens('betaTrimmedFilePath',
configObject.dtsRollup.betaTrimmedFilePath, tokenContext);
publicTrimmedFilePath = ExtractorConfig._resolvePathWithTokens('publicTrimmedFilePath',
configObject.dtsRollup.publicTrimmedFilePath, tokenContext);
}
return new ExtractorConfig({
projectFolder: projectFolder,
packageJson,
packageJsonFullPath,
mainEntryPointFile,
overrideTsconfig: configObject.compiler.overrideTsconfig,
skipLibCheck: !!configObject.compiler.skipLibCheck,
apiReportEnabled,
reportFilePath,
reportTempFilePath,
docModelEnabled,
apiJsonFilePath,
rollupEnabled,
untrimmedFilePath,
betaTrimmedFilePath,
publicTrimmedFilePath,
tsdocMetadataEnabled,
tsdocMetadataFilePath,
messages: configObject.messages || { },
testMode: !!configObject.testMode
});
} catch (e) {
throw new Error(`Error parsing ${filenameForErrors}:\n` + e.message);
}
}
private static _resolvePathWithTokens(fieldName: string, value: string | undefined,
tokenContext: IExtractorConfigTokenContext): string {
value = ExtractorConfig._expandStringWithTokens(fieldName, value, tokenContext);
if (value !== '') {
value = path.resolve(tokenContext.projectFolder, value);
}
return value;
}
private static _expandStringWithTokens(fieldName: string, value: string | undefined,
tokenContext: IExtractorConfigTokenContext): string {
value = value ? value.trim() : '';
if (value !== '') {
value = Text.replaceAll(value, '<unscopedPackageName>', tokenContext.unscopedPackageName);
value = Text.replaceAll(value, '<packageName>', tokenContext.packageName);
const projectFolderToken: string = '<projectFolder>';
if (value.indexOf(projectFolderToken) === 0) {
// Replace "<projectFolder>" at the start of a string
value = path.join(tokenContext.projectFolder, value.substr(projectFolderToken.length));
}
if (value.indexOf(projectFolderToken) >= 0) {
// If after all replacements, "<projectFolder>" appears somewhere in the string, report an error
throw new Error(`The ${fieldName} value incorrectly uses the "<projectFolder>" token.`
+ ` It must appear at the start of the string.`);
}
if (value.indexOf('<lookup>') >= 0) {
throw new Error(`The ${fieldName} value incorrectly uses the "<lookup>" token`);
}
ExtractorConfig._rejectAnyTokensInPath(value, fieldName);
}
return value;
}
/**
* Returns true if the specified file path has the ".d.ts" file extension.
*/
public static hasDtsFileExtension(filePath: string): boolean {
return ExtractorConfig._declarationFileExtensionRegExp.test(filePath);
}
/**
* Given a path string that may have originally contained expandable tokens such as `<projectFolder>"`
* this reports an error if any token-looking substrings remain after expansion (e.g. `c:\blah\<invalid>\blah`).
*/
private static _rejectAnyTokensInPath(value: string, fieldName: string): void {
if (value.indexOf('<') < 0 && value.indexOf('>') < 0) {
return;
}
// Can we determine the name of a token?
const tokenRegExp: RegExp = /(\<[^<]*?\>)/;
const match: RegExpExecArray | null = tokenRegExp.exec(value);
if (match) {
throw new Error(`The ${fieldName} value contains an unrecognized token "${match[1]}"`);
}
throw new Error(`The ${fieldName} value contains extra token characters ("<" or ">"): ${value}`);
}
}