@rushstack/heft-typescript-plugin 0.5.35 → 0.6.1
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/CHANGELOG.json +44 -0
- package/CHANGELOG.md +13 -1
- package/dist/heft-typescript-plugin.d.ts +5 -0
- package/dist/tsdoc-metadata.json +1 -1
- package/lib/TypeScriptBuilder.d.ts.map +1 -1
- package/lib/TypeScriptBuilder.js +29 -12
- package/lib/TypeScriptBuilder.js.map +1 -1
- package/lib/TypeScriptPlugin.d.ts +5 -0
- package/lib/TypeScriptPlugin.d.ts.map +1 -1
- package/lib/TypeScriptPlugin.js +1 -0
- package/lib/TypeScriptPlugin.js.map +1 -1
- package/lib/internalTypings/TypeScriptInternals.d.ts +10 -0
- package/lib/internalTypings/TypeScriptInternals.d.ts.map +1 -1
- package/lib/internalTypings/TypeScriptInternals.js.map +1 -1
- package/lib/schemas/typescript.schema.json +5 -0
- package/package.json +7 -7
package/CHANGELOG.json
CHANGED
|
@@ -1,6 +1,50 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rushstack/heft-typescript-plugin",
|
|
3
3
|
"entries": [
|
|
4
|
+
{
|
|
5
|
+
"version": "0.6.1",
|
|
6
|
+
"tag": "@rushstack/heft-typescript-plugin_v0.6.1",
|
|
7
|
+
"date": "Sat, 23 Nov 2024 01:18:55 GMT",
|
|
8
|
+
"comments": {
|
|
9
|
+
"dependency": [
|
|
10
|
+
{
|
|
11
|
+
"comment": "Updating dependency \"@rushstack/heft\" to `0.68.8`"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"comment": "Updating dependency \"@rushstack/heft\" from `0.68.7` to `0.68.8`"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"version": "0.6.0",
|
|
21
|
+
"tag": "@rushstack/heft-typescript-plugin_v0.6.0",
|
|
22
|
+
"date": "Fri, 22 Nov 2024 01:10:43 GMT",
|
|
23
|
+
"comments": {
|
|
24
|
+
"minor": [
|
|
25
|
+
{
|
|
26
|
+
"comment": "Add \"onlyResolveSymlinksInNodeModules\" option to improve performance for typical repository layouts."
|
|
27
|
+
}
|
|
28
|
+
],
|
|
29
|
+
"dependency": [
|
|
30
|
+
{
|
|
31
|
+
"comment": "Updating dependency \"@rushstack/node-core-library\" to `5.10.0`"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"comment": "Updating dependency \"@rushstack/heft-config-file\" to `0.15.9`"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"comment": "Updating dependency \"@rushstack/heft\" to `0.68.7`"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"comment": "Updating dependency \"@rushstack/terminal\" to `0.14.3`"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"comment": "Updating dependency \"@rushstack/heft\" from `0.68.6` to `0.68.7`"
|
|
44
|
+
}
|
|
45
|
+
]
|
|
46
|
+
}
|
|
47
|
+
},
|
|
4
48
|
{
|
|
5
49
|
"version": "0.5.35",
|
|
6
50
|
"tag": "@rushstack/heft-typescript-plugin_v0.5.35",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
# Change Log - @rushstack/heft-typescript-plugin
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Sat, 23 Nov 2024 01:18:55 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 0.6.1
|
|
6
|
+
Sat, 23 Nov 2024 01:18:55 GMT
|
|
7
|
+
|
|
8
|
+
_Version update only_
|
|
9
|
+
|
|
10
|
+
## 0.6.0
|
|
11
|
+
Fri, 22 Nov 2024 01:10:43 GMT
|
|
12
|
+
|
|
13
|
+
### Minor changes
|
|
14
|
+
|
|
15
|
+
- Add "onlyResolveSymlinksInNodeModules" option to improve performance for typical repository layouts.
|
|
4
16
|
|
|
5
17
|
## 0.5.35
|
|
6
18
|
Thu, 24 Oct 2024 00:15:48 GMT
|
|
@@ -75,6 +75,11 @@ export declare interface ITypeScriptConfigurationJson {
|
|
|
75
75
|
* If true, and the tsconfig has \"isolatedModules\": true, then transpilation will happen in parallel in a worker thread.
|
|
76
76
|
*/
|
|
77
77
|
useTranspilerWorker?: boolean;
|
|
78
|
+
/**
|
|
79
|
+
* If true, the TypeScript compiler will only resolve symlinks to their targets if the links are in a node_modules folder.
|
|
80
|
+
* This significantly reduces file system operations in typical usage.
|
|
81
|
+
*/
|
|
82
|
+
onlyResolveSymlinksInNodeModules?: boolean;
|
|
78
83
|
project?: string;
|
|
79
84
|
/**
|
|
80
85
|
* Configures additional file types that should be copied into the TypeScript compiler's emit folders, for example
|
package/dist/tsdoc-metadata.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TypeScriptBuilder.d.ts","sourceRoot":"","sources":["../src/TypeScriptBuilder.ts"],"names":[],"mappings":";AAKA,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AAGxC,OAAO,KAAK,KAAK,WAAW,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"TypeScriptBuilder.d.ts","sourceRoot":"","sources":["../src/TypeScriptBuilder.ts"],"names":[],"mappings":"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"}
|
package/lib/TypeScriptBuilder.js
CHANGED
|
@@ -148,9 +148,23 @@ class TypeScriptBuilder {
|
|
|
148
148
|
}
|
|
149
149
|
return timeout;
|
|
150
150
|
};
|
|
151
|
+
let realpath = ts.sys.realpath;
|
|
152
|
+
if (this._configuration.onlyResolveSymlinksInNodeModules) {
|
|
153
|
+
const resolver = new node_core_library_1.RealNodeModulePathResolver();
|
|
154
|
+
realpath = resolver.realNodeModulePath;
|
|
155
|
+
}
|
|
156
|
+
const getCurrentDirectory = () => this._configuration.buildFolderPath;
|
|
151
157
|
// Need to also update watchFile and watchDirectory
|
|
152
|
-
const system = Object.assign(Object.assign({}, ts.sys), {
|
|
158
|
+
const system = Object.assign(Object.assign({}, ts.sys), { realpath,
|
|
159
|
+
getCurrentDirectory,
|
|
160
|
+
clearTimeout,
|
|
153
161
|
setTimeout });
|
|
162
|
+
if (realpath && system.getAccessibleFileSystemEntries) {
|
|
163
|
+
const { getAccessibleFileSystemEntries } = system;
|
|
164
|
+
system.readDirectory = (folderPath, extensions, exclude, include, depth) => {
|
|
165
|
+
return ts.matchFiles(folderPath, extensions, exclude, include, ts.sys.useCaseSensitiveFileNames, getCurrentDirectory(), depth, getAccessibleFileSystemEntries, realpath, ts.sys.directoryExists);
|
|
166
|
+
};
|
|
167
|
+
}
|
|
154
168
|
this._tool = {
|
|
155
169
|
ts,
|
|
156
170
|
system,
|
|
@@ -188,7 +202,7 @@ class TypeScriptBuilder {
|
|
|
188
202
|
if (!tool.solutionBuilder && !tool.watchProgram) {
|
|
189
203
|
//#region CONFIGURE
|
|
190
204
|
const { duration: configureDurationMs, tsconfig } = measureTsPerformance('Configure', () => {
|
|
191
|
-
const _tsconfig = this._loadTsconfig(
|
|
205
|
+
const _tsconfig = this._loadTsconfig(tool);
|
|
192
206
|
this._validateTsconfig(ts, _tsconfig);
|
|
193
207
|
return {
|
|
194
208
|
tsconfig: _tsconfig
|
|
@@ -231,7 +245,7 @@ class TypeScriptBuilder {
|
|
|
231
245
|
const { ts, measureSync: measureTsPerformance, pendingTranspilePromises } = tool;
|
|
232
246
|
//#region CONFIGURE
|
|
233
247
|
const { duration: configureDurationMs, tsconfig, compilerHost } = measureTsPerformance('Configure', () => {
|
|
234
|
-
const _tsconfig = this._loadTsconfig(
|
|
248
|
+
const _tsconfig = this._loadTsconfig(tool);
|
|
235
249
|
this._validateTsconfig(ts, _tsconfig);
|
|
236
250
|
const _compilerHost = this._buildIncrementalCompilerHost(tool, _tsconfig);
|
|
237
251
|
return {
|
|
@@ -321,7 +335,7 @@ class TypeScriptBuilder {
|
|
|
321
335
|
if (!tool.solutionBuilder) {
|
|
322
336
|
//#region CONFIGURE
|
|
323
337
|
const { duration: configureDurationMs, solutionBuilderHost } = measureSync('Configure', () => {
|
|
324
|
-
const _tsconfig = this._loadTsconfig(
|
|
338
|
+
const _tsconfig = this._loadTsconfig(tool);
|
|
325
339
|
this._validateTsconfig(ts, _tsconfig);
|
|
326
340
|
const _solutionBuilderHost = this._buildSolutionBuilderHost(tool);
|
|
327
341
|
return {
|
|
@@ -571,13 +585,15 @@ class TypeScriptBuilder {
|
|
|
571
585
|
});
|
|
572
586
|
return `${outFolderName}:${jsExtensionOverride || '.js'}`;
|
|
573
587
|
}
|
|
574
|
-
_loadTsconfig(
|
|
575
|
-
const
|
|
588
|
+
_loadTsconfig(tool) {
|
|
589
|
+
const { ts, system } = tool;
|
|
590
|
+
const parsedConfigFile = ts.readConfigFile(this._configuration.tsconfigPath, system.readFile);
|
|
576
591
|
const currentFolder = path.dirname(this._configuration.tsconfigPath);
|
|
577
592
|
const tsconfig = ts.parseJsonConfigFileContent(parsedConfigFile.config, {
|
|
578
|
-
fileExists:
|
|
579
|
-
readFile:
|
|
580
|
-
readDirectory:
|
|
593
|
+
fileExists: system.fileExists,
|
|
594
|
+
readFile: system.readFile,
|
|
595
|
+
readDirectory: system.readDirectory,
|
|
596
|
+
realpath: system.realpath,
|
|
581
597
|
useCaseSensitiveFileNames: true
|
|
582
598
|
}, currentFolder,
|
|
583
599
|
/*existingOptions:*/ undefined, this._configuration.tsconfigPath);
|
|
@@ -627,8 +643,8 @@ class TypeScriptBuilder {
|
|
|
627
643
|
const reportEmitErrorSummary = (errorCount) => {
|
|
628
644
|
// Do nothing
|
|
629
645
|
};
|
|
630
|
-
const { ts } = tool;
|
|
631
|
-
const solutionBuilderHost = ts.createSolutionBuilderHost(
|
|
646
|
+
const { ts, system } = tool;
|
|
647
|
+
const solutionBuilderHost = ts.createSolutionBuilderHost(system, this._getCreateBuilderProgram(ts), tool.reportDiagnostic, reportSolutionBuilderStatus, reportEmitErrorSummary);
|
|
632
648
|
solutionBuilderHost.afterProgramEmitAndDiagnostics = (program) => {
|
|
633
649
|
// Use the native metric since we aren't overwriting the writer
|
|
634
650
|
this._typescriptTerminal.writeVerboseLine(`I/O Write: ${ts.performance.getDuration('I/O Write')}ms (${ts.performance.getCount('beforeIOWrite')} files)`);
|
|
@@ -636,13 +652,14 @@ class TypeScriptBuilder {
|
|
|
636
652
|
return solutionBuilderHost;
|
|
637
653
|
}
|
|
638
654
|
_buildIncrementalCompilerHost(tool, tsconfig) {
|
|
655
|
+
var _a;
|
|
639
656
|
const { ts, system } = tool;
|
|
640
657
|
let compilerHost;
|
|
641
658
|
if (tsconfig.options.incremental) {
|
|
642
659
|
compilerHost = ts.createIncrementalCompilerHost(tsconfig.options, system);
|
|
643
660
|
}
|
|
644
661
|
else {
|
|
645
|
-
compilerHost = ts.createCompilerHost(tsconfig.options, undefined, system);
|
|
662
|
+
compilerHost = ((_a = ts.createCompilerHostWorker) !== null && _a !== void 0 ? _a : ts.createCompilerHost)(tsconfig.options, undefined, system);
|
|
646
663
|
}
|
|
647
664
|
this._changeCompilerHostToUseCache(compilerHost, tool);
|
|
648
665
|
return compilerHost;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TypeScriptBuilder.js","sourceRoot":"","sources":["../src/TypeScriptBuilder.ts"],"names":[],"mappings":";AAAA,4FAA4F;AAC5F,2DAA2D;;;;;;;;;;;;;;;;;;;;;;;;;;AAE3D,+CAAiC;AACjC,2CAA6B;AAC7B,mDAAwC;AAExC,+CAAiC;AAEjC,oEAA4F;AAiB5F,iFAA8E;AAuF9E,MAAM,iCAAiC,GAAW,CAAC,CAAC;AACpD,MAAM,iCAAiC,GAAW,CAAC,CAAC;AAEpD,MAAM,iCAAiC,GAAW,CAAC,CAAC;AACpD,MAAM,iCAAiC,GAAW,CAAC,CAAC;AAyBpD,MAAa,iBAAiB;IAoB5B,IAAY,gBAAgB;QAC1B,IAAI,CAAC,IAAI,CAAC,iBAAiB,EAAE,CAAC;YAC5B,iHAAiH;YACjH,0DAA0D;YAC1D,MAAM,UAAU,GAAgB,MAAM,CAAC,UAAU,CAAC,MAAM,CAAC,CAAC;YAE1D,UAAU,CAAC,MAAM,CAAC,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,cAAc,CAAC,2BAA2B,IAAI,EAAE,CAAC,CAAC,CAAC;YACzF,MAAM,oBAAoB,GAAW,UAAU;iBAC5C,MAAM,CAAC,QAAQ,CAAC;iBAChB,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC;iBACX,OAAO,CAAC,KAAK,EAAE,GAAG,CAAC;iBACnB,OAAO,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC;YAEvB,gHAAgH;YAChH,+FAA+F;YAC/F,kHAAkH;YAClH,MAAM,yBAAyB,GAAW,wBAAI,CAAC,gBAAgB,CAC7D,IAAI,CAAC,cAAc,CAAC,uBAAuB,CAC5C,CAAC;YACF,IAAI,CAAC,iBAAiB,GAAG,GAAG,yBAAyB,OAAO,oBAAoB,OAAO,CAAC;QAC1F,CAAC;QAED,OAAO,IAAI,CAAC,iBAAiB,CAAC;IAChC,CAAC;IAED,YAAmB,aAA8C;QAjChD,+BAA0B,GAAgB,IAAI,GAAG,EAAE,CAAC;QAI7D,UAAK,GAAgC,SAAS,CAAC;QAE/C,mBAAc,GAAW,CAAC,CAAC;QA4BjC,IAAI,CAAC,cAAc,GAAG,aAAa,CAAC;QACpC,IAAI,CAAC,iBAAiB,GAAG,aAAa,CAAC,YAAY,CAAC;QACpD,IAAI,CAAC,mBAAmB,GAAG,aAAa,CAAC,YAAY,CAAC,QAAQ,CAAC;IACjE,CAAC;IAEM,KAAK,CAAC,WAAW,CAAC,gBAA6B;;QACpD,IAAI,CAAC,IAAI,CAAC,KAAK,EAAE,CAAC;YAChB,iCAAiC;YACjC,MAAM,2BAA2B,GAAW,IAAI,CAAC,IAAI,CACnD,IAAI,CAAC,cAAc,CAAC,kBAAkB,EACtC,cAAc,CACf,CAAC;YACF,MAAM,WAAW,GAAiB,MAAM,4BAAQ,CAAC,SAAS,CAAC,2BAA2B,CAAC,CAAC;YACxF,IAAI,CAAC,kBAAkB,GAAG,WAAW,CAAC,OAAO,CAAC;YAC9C,MAAM,aAAa,GAAyB,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC;YAClF,IAAI,CAAC,aAAa,EAAE,CAAC;gBACnB,MAAM,IAAI,KAAK,CACb,4BAA4B,IAAI,CAAC,kBAAkB,wCAAwC;oBACzF,2BAA2B,CAC9B,CAAC;YACJ,CAAC;YACD,IAAI,CAAC,wBAAwB,GAAG,aAAa,CAAC;YAE9C,iGAAiG;YACjG,0EAA0E;YAC1E,IAAI,CAAC,aAAa,GAAG;gBACnB,kBAAkB,EAAE,KAAK;gBACzB,eAAe,EAAE,IAAI,CAAC,wBAAwB,CAAC,KAAK,IAAI,CAAC;aAC1D,CAAC;YAEF,IACE,IAAI,CAAC,wBAAwB,CAAC,KAAK,GAAG,CAAC;gBACvC,CAAC,IAAI,CAAC,wBAAwB,CAAC,KAAK,KAAK,CAAC,IAAI,IAAI,CAAC,wBAAwB,CAAC,KAAK,IAAI,CAAC,CAAC,EACvF,CAAC;gBACD,IAAI,CAAC,aAAa,CAAC,kBAAkB,GAAG,IAAI,CAAC;YAC/C,CAAC;YAED,IAAI,CAAC,mBAAmB,GAAG,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,sBAAsB,CAAC;YACxE,IAAI,IAAI,CAAC,mBAAmB,IAAI,CAAC,IAAI,CAAC,aAAa,CAAC,eAAe,EAAE,CAAC;gBACpE,MAAM,IAAI,KAAK,CACb,qFAAqF,IAAI,CAAC,kBAAkB,EAAE,CAC/G,CAAC;YACJ,CAAC;YAED,sGAAsG;YACtG,uGAAuG;YACvG,0FAA0F;YAC1F,IACE,IAAI,CAAC,wBAAwB,CAAC,KAAK,GAAG,iCAAiC;gBACvE,CAAC,IAAI,CAAC,wBAAwB,CAAC,KAAK,KAAK,iCAAiC;oBACxE,IAAI,CAAC,wBAAwB,CAAC,KAAK,GAAG,iCAAiC,CAAC,EAC1E,CAAC;gBACD,+FAA+F;gBAC/F,8EAA8E;gBAC9E,IAAI,CAAC,mBAAmB,CAAC,SAAS,CAChC,mCAAmC,IAAI,CAAC,kBAAkB,cAAc;oBACtE,gEAAgE,CACnE,CAAC;YACJ,CAAC;iBAAM,IACL,IAAI,CAAC,wBAAwB,CAAC,KAAK,GAAG,iCAAiC;gBACvE,CAAC,IAAI,CAAC,wBAAwB,CAAC,KAAK,KAAK,iCAAiC;oBACxE,IAAI,CAAC,wBAAwB,CAAC,KAAK,GAAG,iCAAiC,CAAC,EAC1E,CAAC;gBACD,IAAI,CAAC,mBAAmB,CAAC,SAAS,CAChC,mCAAmC,IAAI,CAAC,kBAAkB,WAAW;oBACnE,qDAAqD;oBACrD,IAAI,iCAAiC,IAAI,iCAAiC,+BAA+B,CAC5G,CAAC;YACJ,CAAC;YAED,MAAM,EAAE,GAAuB,OAAO,CAAC,IAAI,CAAC,cAAc,CAAC,kBAAkB,CAAC,CAAC;YAE/E,EAAE,CAAC,WAAW,CAAC,MAAM,EAAE,CAAC;YAExB,MAAM,eAAe,GAA2B;gBAC9C,MAAA,EAAE,CAAC,WAAW,CAAC,+EAA+E,0CAAE,IAAI;gBACpG,oEAAoE;gBACpE,MAAA,EAAE,CAAC,WAAW;qBACX,6FAA6F,0CAAE,IAAI;aACvG,CAAC;YACF,KAAK,MAAM,IAAI,IAAI,eAAe,EAAE,CAAC;gBACnC,IAAI,IAAI,KAAK,SAAS,EAAE,CAAC;oBACvB,IAAI,CAAC,0BAA0B,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC;gBAC5C,CAAC;YACH,CAAC;YAED,MAAM,oBAAoB,GAAwB,CAChD,eAAuB,EACvB,EAAiB,EACjB,EAAE;gBACF,MAAM,UAAU,GAAW,SAAS,eAAe,EAAE,CAAC;gBACtD,EAAE,CAAC,WAAW,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;gBAChC,MAAM,MAAM,GAAY,EAAE,EAAE,CAAC;gBAC7B,MAAM,SAAS,GAAW,QAAQ,eAAe,EAAE,CAAC;gBACpD,EAAE,CAAC,WAAW,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;gBAC/B,EAAE,CAAC,WAAW,CAAC,OAAO,CAAC,eAAe,EAAE,UAAU,EAAE,SAAS,CAAC,CAAC;gBAC/D,uCACK,MAAM,KACT,QAAQ,EAAE,EAAE,CAAC,WAAW,CAAC,WAAW,CAAC,eAAe,CAAC,EACrD,KAAK,EAAE,EAAE,CAAC,WAAW,CAAC,QAAQ,CAAC,UAAU,CAAC,IAC1C;YACJ,CAAC,CAAC;YAEF,IAAI,CAAC,mBAAmB,CAAC,SAAS,CAAC,4BAA4B,EAAE,CAAC,OAAO,EAAE,CAAC,CAAC;YAE7E,MAAM,cAAc,GAA6B,EAAE,CAAC;YAEpD,MAAM,iBAAiB,GAAsB,IAAI,GAAG,EAAE,CAAC;YAEvD,MAAM,YAAY,GAAG,CAAC,OAAqB,EAAQ,EAAE;gBACnD,iBAAiB,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;YACpC,CAAC,CAAC;YAEF,MAAM,UAAU,GAAG,CACjB,EAAwB,EACxB,EAAU,EACV,GAAG,IAAO,EACI,EAAE;;gBAChB,MAAM,OAAO,GAAiB,GAAG,EAAE;oBACjC,EAAE,CAAC,GAAG,IAAI,CAAC,CAAC;gBACd,CAAC,CAAC;gBACF,iBAAiB,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC;gBAC/B,IAAI,CAAC,CAAA,MAAA,IAAI,CAAC,KAAK,0CAAE,SAAS,CAAA,IAAI,gBAAgB,EAAE,CAAC;oBAC/C,gBAAgB,EAAE,CAAC;gBACrB,CAAC;gBACD,OAAO,OAAO,CAAC;YACjB,CAAC,CAAC;YAEF,mDAAmD;YACnD,MAAM,MAAM,mCACP,EAAE,CAAC,GAAG,KACT,mBAAmB,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC,cAAc,CAAC,eAAe,EAC9D,YAAY;gBACZ,UAAU,GACX,CAAC;YAEF,IAAI,CAAC,KAAK,GAAG;gBACX,EAAE;gBACF,MAAM;gBAEN,WAAW,EAAE,oBAAoB;gBAEjC,eAAe,EAAE,IAAI,GAAG,EAAE;gBAE1B,YAAY,EAAE,SAAS;gBACvB,eAAe,EAAE,SAAS;gBAE1B,cAAc;gBAEd,iBAAiB;gBAEjB,SAAS,EAAE,KAAK;gBAEhB,gBAAgB,EAAE,CAAC,UAAkC,EAAE,EAAE;oBACvD,cAAc,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;gBAClC,CAAC;gBAED,MAAM,EAAE,SAAS;gBAEjB,wBAAwB,EAAE,IAAI,GAAG,EAAE;gBACnC,uBAAuB,EAAE,IAAI,GAAG,EAAE;aACnC,CAAC;QACJ,CAAC;QAED,MAAM,EAAE,WAAW,EAAE,GAAG,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC;QACtC,gFAAgF;QAChF,WAAW,CAAC,OAAO,EAAE,CAAC;QACtB,WAAW,CAAC,MAAM,EAAE,CAAC;QAErB,IAAI,gBAAgB,KAAK,SAAS,EAAE,CAAC;YACnC,MAAM,IAAI,CAAC,cAAc,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QACxC,CAAC;aAAM,IAAI,IAAI,CAAC,mBAAmB,EAAE,CAAC;YACpC,MAAM,IAAI,CAAC,sBAAsB,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QAChD,CAAC;aAAM,CAAC;YACN,MAAM,IAAI,CAAC,cAAc,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QACxC,CAAC;IACH,CAAC;IAEM,KAAK,CAAC,cAAc,CAAC,IAAqB;QAC/C,MAAM,EACJ,EAAE,EACF,WAAW,EAAE,oBAAoB,EACjC,iBAAiB,EACjB,cAAc,EACd,wBAAwB,EACzB,GAAG,IAAI,CAAC;QAET,IAAI,CAAC,IAAI,CAAC,eAAe,IAAI,CAAC,IAAI,CAAC,YAAY,EAAE,CAAC;YAChD,mBAAmB;YACnB,MAAM,EAAE,QAAQ,EAAE,mBAAmB,EAAE,QAAQ,EAAE,GAAG,oBAAoB,CAAC,WAAW,EAAE,GAAG,EAAE;gBACzF,MAAM,SAAS,GAAkC,IAAI,CAAC,aAAa,CAAC,EAAE,CAAC,CAAC;gBACxE,IAAI,CAAC,iBAAiB,CAAC,EAAE,EAAE,SAAS,CAAC,CAAC;gBAEtC,OAAO;oBACL,QAAQ,EAAE,SAAS;iBACpB,CAAC;YACJ,CAAC,CAAC,CAAC;YACH,IAAI,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,cAAc,mBAAmB,IAAI,CAAC,CAAC;YACjF,YAAY;YAEZ,IAAI,IAAI,CAAC,mBAAmB,EAAE,CAAC;gBAC7B,MAAM,YAAY,GAAuB,IAAI,CAAC,8BAA8B,CAAC,IAAI,CAAC,CAAC;gBACnF,MAAM,OAAO,GACX,EAAE,CAAC,8BAA8B,CAAC,YAAY,EAAE,CAAC,IAAI,CAAC,cAAc,CAAC,YAAY,CAAC,EAAE,EAAE,CAAC,CAAC;gBAE1F,IAAI,CAAC,eAAe,GAAG,OAAmC,CAAC;gBAE3D,OAAO,CAAC,KAAK,EAAE,CAAC;YAClB,CAAC;iBAAM,CAAC;gBACN,MAAM,YAAY,GAAuB,IAAI,CAAC,uBAAuB,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;gBACtF,IAAI,CAAC,YAAY,GAAG,EAAE,CAAC,kBAAkB,CAAC,YAAY,CAAC,CAAC;YAC1D,CAAC;QACH,CAAC;QAED,IAAI,iBAAiB,CAAC,IAAI,GAAG,CAAC,EAAE,CAAC;YAC/B,cAAc,CAAC,MAAM,GAAG,CAAC,CAAC;YAC1B,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;YACtB,KAAK,MAAM,SAAS,IAAI,iBAAiB,EAAE,CAAC;gBAC1C,iBAAiB,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC;gBACpC,SAAS,EAAE,CAAC;YACd,CAAC;YACD,IAAI,wBAAwB,CAAC,IAAI,EAAE,CAAC;gBAClC,MAAM,WAAW,GAA6B,MAAM,OAAO,CAAC,GAAG,CAAC,wBAAwB,CAAC,MAAM,EAAE,CAAC,CAAC;gBACnG,KAAK,MAAM,EAAE,WAAW,EAAE,IAAI,WAAW,EAAE,CAAC;oBAC1C,KAAK,MAAM,UAAU,IAAI,WAAW,EAAE,CAAC;wBACrC,cAAc,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;oBAClC,CAAC;gBACH,CAAC;YACH,CAAC;YACD,kDAAkD;YAClD,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;QACzB,CAAC;QACD,IAAI,CAAC,eAAe,CAAC,EAAE,EAAE,cAAc,EAAE,IAAI,CAAC,mBAAmB,CAAC,CAAC;IACrE,CAAC;IAEM,KAAK,CAAC,cAAc,CAAC,IAAqB;QAC/C,MAAM,EAAE,EAAE,EAAE,WAAW,EAAE,oBAAoB,EAAE,wBAAwB,EAAE,GAAG,IAAI,CAAC;QAEjF,mBAAmB;QACnB,MAAM,EACJ,QAAQ,EAAE,mBAAmB,EAC7B,QAAQ,EACR,YAAY,EACb,GAAG,oBAAoB,CAAC,WAAW,EAAE,GAAG,EAAE;YACzC,MAAM,SAAS,GAAkC,IAAI,CAAC,aAAa,CAAC,EAAE,CAAC,CAAC;YACxE,IAAI,CAAC,iBAAiB,CAAC,EAAE,EAAE,SAAS,CAAC,CAAC;YAEtC,MAAM,aAAa,GAA6B,IAAI,CAAC,6BAA6B,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC;YAEpG,OAAO;gBACL,QAAQ,EAAE,SAAS;gBACnB,YAAY,EAAE,aAAa;aAC5B,CAAC;QACJ,CAAC,CAAC,CAAC;QACH,IAAI,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,cAAc,mBAAmB,IAAI,CAAC,CAAC;QACjF,YAAY;QAEZ,iBAAiB;QACjB,iGAAiG;QACjG,IAAI,cAAc,GAA2C,SAAS,CAAC;QACvE,IAAI,YAAiC,CAAC;QAEtC,MAAM,eAAe,GACnB,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,mBAAmB,IAAI,CAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,eAAe,CAAC;QAClF,MAAM,IAAI,GAA2B,eAAe,CAAC,CAAC,CAAC,aAAa,CAAC,CAAC,CAAC,MAAM,CAAC;QAE9E,IAAI,gBAAiD,CAAC;QAEtD,IAAI,QAAQ,CAAC,OAAO,CAAC,WAAW,EAAE,CAAC;YACjC,yGAAyG;YACzG,iGAAiG;YACjG,MAAM,UAAU,GACd,EAAE,CAAC,kBAAkB,CAAC,QAAQ,CAAC,OAAO,EAAE,YAAY,CAAC,CAAC;YACxD,cAAc,GAAG,EAAE,CAAC,8CAA8C,CAChE,QAAQ,CAAC,SAAS,EAClB,QAAQ,CAAC,OAAO,EAChB,YAAY,EACZ,UAAU,EACV,EAAE,CAAC,+BAA+B,CAAC,QAAQ,CAAC,EAC5C,QAAQ,CAAC,iBAAiB,CAC3B,CAAC;YACF,gBAAgB,GAAG,qCAAqC,CAAC,cAAc,CAAC,CAAC;YACzE,YAAY,GAAG,cAAc,CAAC,UAAU,EAAE,CAAC;QAC7C,CAAC;aAAM,CAAC;YACN,YAAY,GAAG,EAAE,CAAC,aAAa,CAAC;gBAC9B,SAAS,EAAE,QAAQ,CAAC,SAAS;gBAC7B,OAAO,EAAE,QAAQ,CAAC,OAAO;gBACzB,iBAAiB,EAAE,QAAQ,CAAC,iBAAiB;gBAC7C,IAAI,EAAE,YAAY;gBAClB,UAAU,EAAE,SAAS;gBACrB,4BAA4B,EAAE,EAAE,CAAC,+BAA+B,CAAC,QAAQ,CAAC;aAC3E,CAAC,CAAC;YACH,gBAAgB,GAAG,8BAA8B,CAAC,YAAY,CAAC,CAAC;QAClE,CAAC;QAED,2EAA2E;QAC3E,MAAM,cAAc,GAAqD,cAAc,IAAI,YAAY,CAAC;QAExG,IAAI,CAAC,mBAAmB,CAAC,EAAE,CAAC,CAAC;QAC7B,YAAY;QAEZ,IAAI,eAAe,EAAE,CAAC;YACpB,iCAAiC;YACjC,IAAI,CAAC,uBAAuB,CAAC,IAAI,EAAE,cAAc,CAAC,kBAAkB,EAAE,EAAE,gBAAgB,CAAC,CAAC;QAC5F,CAAC;QAED,kBAAkB;QAClB,MAAM,EAAE,QAAQ,EAAE,qBAAqB,EAAE,WAAW,EAAE,cAAc,EAAE,GAAG,oBAAoB,CAC3F,SAAS,EACT,GAAG,EAAE;YACH,MAAM,cAAc,GAA6B;gBAC/C,GAAG,cAAc,CAAC,+BAA+B,EAAE;gBACnD,GAAG,cAAc,CAAC,qBAAqB,EAAE;gBACzC,GAAG,cAAc,CAAC,uBAAuB,EAAE;gBAC3C,GAAG,cAAc,CAAC,oBAAoB,EAAE;gBACxC,GAAG,cAAc,CAAC,sBAAsB,EAAE;aAC3C,CAAC;YACF,OAAO,EAAE,WAAW,EAAE,cAAc,EAAE,CAAC;QACzC,CAAC,CACF,CAAC;QACF,IAAI,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,YAAY,qBAAqB,IAAI,CAAC,CAAC;QACjF,YAAY;QAEZ,cAAc;QACd,MAAM,EAAE,YAAY,EAAE,GAAG,IAAA,2DAA4B,EAAC,YAAY,EAAE,EAAE,EAAE,IAAI,CAAC,kBAAkB,EAAE,IAAI,CAAC,CAAC;QAEvG,MAAM,UAAU,GAA2B,cAAc,CAAC,IAAI,CAC5D,SAAS;QACT,wEAAwE;QACxE,EAAE,CAAC,GAAG,CAAC,SAAS,EAChB,SAAS,EACT,SAAS,EACT,SAAS,CACV,CAAC;QAEF,IAAI,CAAC,cAAc,EAAE,CAAC;QACtB,YAAY;QAEZ,IAAI,CAAC,mBAAmB,CAAC,EAAE,CAAC,CAAC;QAE7B,wBAAwB;QACxB,kGAAkG;QAClG,MAAM,cAAc,GAA6B,CAAC,GAAG,cAAc,EAAE,GAAG,UAAU,CAAC,WAAW,CAAC,CAAC;QAChG,YAAY;QAEZ,IAAI,CAAC,cAAc,CAAC,wBAAwB,CAAC,YAAY,EAAE,YAAY,CAAC,CAAC;QAEzE,IAAI,wBAAwB,CAAC,IAAI,EAAE,CAAC;YAClC,MAAM,WAAW,GAA6B,MAAM,OAAO,CAAC,GAAG,CAAC,wBAAwB,CAAC,MAAM,EAAE,CAAC,CAAC;YACnG,KAAK,MAAM,EAAE,WAAW,EAAE,IAAI,WAAW,EAAE,CAAC;gBAC1C,KAAK,MAAM,UAAU,IAAI,WAAW,EAAE,CAAC;oBACrC,cAAc,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;gBAClC,CAAC;YACH,CAAC;QACH,CAAC;QAED,IAAI,CAAC,eAAe,CAAC,EAAE,EAAE,cAAc,CAAC,CAAC;QACzC,kEAAkE;QAClE,EAAE,CAAC,WAAW,CAAC,OAAO,EAAE,CAAC;QACzB,EAAE,CAAC,WAAW,CAAC,MAAM,EAAE,CAAC;IAC1B,CAAC;IAEM,KAAK,CAAC,sBAAsB,CAAC,IAAqB;QACvD,IAAI,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,qBAAqB,CAAC,CAAC;QAEjE,MAAM,EAAE,EAAE,EAAE,WAAW,EAAE,cAAc,EAAE,wBAAwB,EAAE,GAAG,IAAI,CAAC;QAC3E,cAAc,CAAC,MAAM,GAAG,CAAC,CAAC;QAE1B,IAAI,CAAC,IAAI,CAAC,eAAe,EAAE,CAAC;YAC1B,mBAAmB;YACnB,MAAM,EAAE,QAAQ,EAAE,mBAAmB,EAAE,mBAAmB,EAAE,GAAG,WAAW,CAAC,WAAW,EAAE,GAAG,EAAE;gBAC3F,MAAM,SAAS,GAAkC,IAAI,CAAC,aAAa,CAAC,EAAE,CAAC,CAAC;gBACxE,IAAI,CAAC,iBAAiB,CAAC,EAAE,EAAE,SAAS,CAAC,CAAC;gBAEtC,MAAM,oBAAoB,GAAkB,IAAI,CAAC,yBAAyB,CAAC,IAAI,CAAC,CAAC;gBAEjF,OAAO;oBACL,mBAAmB,EAAE,oBAAoB;iBAC1C,CAAC;YACJ,CAAC,CAAC,CAAC;YACH,IAAI,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,cAAc,mBAAmB,IAAI,CAAC,CAAC;YACjF,YAAY;YAEZ,IAAI,CAAC,eAAe,GAAG,EAAE,CAAC,qBAAqB,CAC7C,mBAAmB,EACnB,CAAC,IAAI,CAAC,cAAc,CAAC,YAAY,CAAC,EAClC,EAAE,CACyB,CAAC;QAChC,CAAC;aAAM,CAAC;YACN,oCAAoC;YACpC,KAAK,MAAM,OAAO,IAAI,IAAI,CAAC,eAAe,CAAC,aAAa,EAAE,EAAE,CAAC;gBAC3D,IAAI,CAAC,eAAe,CAAC,iBAAiB,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC;YACrD,CAAC;QACH,CAAC;QAED,cAAc;QACd,8EAA8E;QAC9E,IAAI,CAAC,eAAe,CAAC,KAAK,EAAE,CAAC;QAC7B,IAAI,CAAC,cAAc,EAAE,CAAC;QACtB,YAAY;QAEZ,IAAI,wBAAwB,CAAC,IAAI,EAAE,CAAC;YAClC,MAAM,WAAW,GAA6B,MAAM,OAAO,CAAC,GAAG,CAAC,wBAAwB,CAAC,MAAM,EAAE,CAAC,CAAC;YACnG,KAAK,MAAM,EAAE,WAAW,EAAE,IAAI,WAAW,EAAE,CAAC;gBAC1C,KAAK,MAAM,UAAU,IAAI,WAAW,EAAE,CAAC;oBACrC,cAAc,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;gBAClC,CAAC;YACH,CAAC;QACH,CAAC;QAED,IAAI,CAAC,eAAe,CAAC,EAAE,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACjD,CAAC;IAEO,eAAe,CACrB,EAAsB,EACtB,cAAwC,EACxC,cAAwB;QAExB,MAAM,WAAW,GAAsC,EAAE,CAAC,6BAA6B,CAAC,cAAc,CAAC,CAAC;QAExG,IAAI,WAAW,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;YAC3B,IAAI,YAAY,GAAW,CAAC,CAAC;YAC7B,IAAI,QAAQ,GAAY,KAAK,CAAC;YAE9B,IAAI,CAAC,mBAAmB,CAAC,SAAS,CAChC,eAAe,WAAW,CAAC,MAAM,oBAAoB,WAAW,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,GAAG,CAC1F,CAAC;YACF,KAAK,MAAM,UAAU,IAAI,WAAW,EAAE,CAAC;gBACrC,MAAM,kBAAkB,GAAmC,IAAI,CAAC,8BAA8B,CAC5F,UAAU,EACV,EAAE,CACH,CAAC;gBAEF,IAAI,kBAAkB,KAAK,EAAE,CAAC,kBAAkB,CAAC,OAAO,EAAE,CAAC;oBACzD,YAAY,EAAE,CAAC;gBACjB,CAAC;qBAAM,IAAI,kBAAkB,KAAK,EAAE,CAAC,kBAAkB,CAAC,KAAK,EAAE,CAAC;oBAC9D,QAAQ,GAAG,IAAI,CAAC;gBAClB,CAAC;gBAED,IAAI,CAAC,uBAAuB,CAAC,EAAE,EAAE,UAAU,EAAE,kBAAkB,CAAC,CAAC;YACnE,CAAC;YAED,IAAI,cAAc,IAAI,YAAY,GAAG,CAAC,IAAI,CAAC,QAAQ,EAAE,CAAC;gBACpD,IAAI,CAAC,iBAAiB,CAAC,SAAS,CAC9B,IAAI,KAAK,CACP,0BAA0B,YAAY,WAAW,YAAY,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,GAAG;oBAC/E,iIAAiI,CACpI,CACF,CAAC;YACJ,CAAC;QACH,CAAC;IACH,CAAC;IAEO,mBAAmB,CAAC,EAAsB;QAChD,IAAI,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,SAAS,EAAE,CAAC,WAAW,CAAC,WAAW,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;QAC3F,IAAI,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,UAAU,EAAE,CAAC,WAAW,CAAC,WAAW,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;QAC7F,IAAI,CAAC,mBAAmB,CAAC,gBAAgB,CACvC,cAAc,EAAE,CAAC,WAAW,CAAC,WAAW,CAAC,eAAe,CAAC,KAAK;YAC5D,IAAI,EAAE,CAAC,WAAW,CAAC,QAAQ,CAAC,iBAAiB,CAAC,SAAS,CAC1D,CAAC;QACF,IAAI,CAAC,mBAAmB,CAAC,gBAAgB,CACvC,UAAU,EAAE,CAAC,WAAW,CAAC,WAAW,CAAC,WAAW,CAAC,KAAK;YACpD,IAAI,EAAE,CAAC,WAAW,CAAC,QAAQ,CAAC,aAAa,CAAC,8BAA8B,CAC3E,CAAC;QACF,IAAI,CAAC,mBAAmB,CAAC,gBAAgB,CACvC,SAAS,EAAE,CAAC,WAAW,CAAC,WAAW,CAAC,MAAM,CAAC,qBAAqB,CACjE,CAAC;QACF,IAAI,CAAC,mBAAmB,CAAC,gBAAgB,CACvC,cAAc,EAAE,CAAC,WAAW,CAAC,WAAW,CAAC,WAAW,CAAC,OAAO,EAAE,CAAC,WAAW,CAAC,QAAQ,CACjF,eAAe,CAChB,SAAS,CACX,CAAC;IACJ,CAAC;IAEO,mBAAmB,CAAC,EAAsB;QAChD,IAAI,CAAC,mBAAmB,CAAC,gBAAgB,CACvC,aAAa,EAAE,CAAC,WAAW,CAAC,WAAW,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC,WAAW,CAAC,QAAQ,CAC/E,cAAc,CACf,SAAS,CACX,CAAC;QACF,IAAI,CAAC,mBAAmB,CAAC,gBAAgB,CACvC,UAAU,EAAE,CAAC,WAAW,CAAC,WAAW,CAAC,OAAO,CAAC,OAAO,EAAE,CAAC,WAAW,CAAC,QAAQ,CAAC,aAAa,CAAC,SAAS,CACpG,CAAC;QACF,IAAI,CAAC,mBAAmB,CAAC,gBAAgB,CACvC,oCAAoC,EAAE,CAAC,WAAW,CAAC,WAAW,CAAC,SAAS,CAAC,IAAI,CAC9E,CAAC;IACJ,CAAC;IAEO,uBAAuB,CAC7B,EAAsB,EACtB,UAAkC,EAClC,qBAAqD,IAAI,CAAC,8BAA8B,CAAC,UAAU,EAAE,EAAE,CAAC;QAExG,oCAAoC;QACpC,IAAI,iBAAyB,CAAC;QAC9B,IAAI,WAAkB,CAAC;QACvB,IAAI,UAAU,CAAC,IAAI,EAAE,CAAC;YACpB,MAAM,EAAE,IAAI,EAAE,SAAS,EAAE,GAAG,UAAU,CAAC,IAAI,CAAC,6BAA6B,CAAC,UAAU,CAAC,KAAM,CAAC,CAAC;YAC7F,MAAM,OAAO,GAAW,EAAE,CAAC,4BAA4B,CAAC,UAAU,CAAC,WAAW,EAAE,IAAI,CAAC,CAAC;YACtF,MAAM,gBAAgB,GAAW,MAAM,UAAU,CAAC,IAAI,KAAK,OAAO,EAAE,CAAC;YACrE,WAAW,GAAG,IAAI,6BAAS,CAAC,gBAAgB,EAAE;gBAC5C,YAAY,EAAE,UAAU,CAAC,IAAI,CAAC,QAAQ;gBACtC,aAAa,EAAE,IAAI,CAAC,cAAc,CAAC,eAAe;gBAClD,IAAI,EAAE,IAAI,GAAG,CAAC;gBACd,MAAM,EAAE,SAAS,GAAG,CAAC;aACtB,CAAC,CAAC;YACH,iBAAiB,GAAG,WAAW,CAAC,QAAQ,EAAE,CAAC;QAC7C,CAAC;aAAM,CAAC;YACN,iBAAiB,GAAG,EAAE,CAAC,4BAA4B,CAAC,UAAU,CAAC,WAAW,EAAE,IAAI,CAAC,CAAC;YAClF,WAAW,GAAG,IAAI,KAAK,CAAC,iBAAiB,CAAC,CAAC;QAC7C,CAAC;QAED,QAAQ,kBAAkB,EAAE,CAAC;YAC3B,KAAK,EAAE,CAAC,kBAAkB,CAAC,KAAK,CAAC,CAAC,CAAC;gBACjC,IAAI,CAAC,iBAAiB,CAAC,SAAS,CAAC,WAAW,CAAC,CAAC;gBAC9C,MAAM;YACR,CAAC;YAED,KAAK,EAAE,CAAC,kBAAkB,CAAC,OAAO,CAAC,CAAC,CAAC;gBACnC,IAAI,CAAC,iBAAiB,CAAC,WAAW,CAAC,WAAW,CAAC,CAAC;gBAChD,MAAM;YACR,CAAC;YAED,OAAO,CAAC,CAAC,CAAC;gBACR,IAAI,CAAC,mBAAmB,CAAC,SAAS,CAAC,GAAG,iBAAiB,CAAC,CAAC;gBACzD,MAAM;YACR,CAAC;QACH,CAAC;IACH,CAAC;IAEO,8BAA8B,CACpC,UAAkC,EAClC,EAAsB;QAEtB,sEAAsE;QACtE,6DAA6D;QAC7D,EAAE;QACF,gEAAgE;QAChE,EAAE;QACF,yFAAyF;QACzF,0FAA0F;QAC1F,IAAI,UAAU,CAAC,kBAAkB,IAAI,UAAU,CAAC,QAAQ,KAAK,EAAE,CAAC,kBAAkB,CAAC,KAAK,EAAE,CAAC;YACzF,OAAO,EAAE,CAAC,kBAAkB,CAAC,OAAO,CAAC;QACvC,CAAC;QAED,kEAAkE;QAClE,IAAI,IAAI,CAAC,0BAA0B,CAAC,GAAG,CAAC,UAAU,CAAC,IAAI,CAAC,EAAE,CAAC;YACzD,OAAO,EAAE,CAAC,kBAAkB,CAAC,OAAO,CAAC;QACvC,CAAC;QAED,OAAO,UAAU,CAAC,QAAQ,CAAC;IAC7B,CAAC;IAEO,iBAAiB,CAAC,EAAsB,EAAE,QAAuC;QACvF,IACE,CAAC,QAAQ,CAAC,OAAO,CAAC,MAAM,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC;YACrD,CAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,MAAM,IAAI,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,EACrD,CAAC;YACD,MAAM,IAAI,KAAK,CACb,8GAA8G,CAC/G,CAAC;QACJ,CAAC;QAED,IAAI,CAAC,kBAAkB,GAAG,EAAE,CAAC;QAC7B,MAAM,cAAc,GAAmD,IAAI,GAAG,EAAE,CAAC;QACjF,MAAM,gBAAgB,GAAmC,IAAI,GAAG,EAAE,CAAC;QAEnE,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC;YAC7B,MAAM,IAAI,KAAK,CACb,+FAA+F;gBAC7F,mDAAmD,CACtD,CAAC;QACJ,CAAC;QAED,IAAI,IAAI,CAAC,cAAc,CAAC,2BAA2B,EAAE,CAAC;YACpD,IAAI,CAAC,oBAAoB,CACvB,EAAE,CAAC,UAAU,CAAC,QAAQ,EACtB,QAAQ,CAAC,OAAO,CAAC,MAAO;YACxB,eAAe,CAAC,QAAQ,CAAC,OAAO,CAAC,MAAM,KAAK,EAAE,CAAC,UAAU,CAAC,QAAQ,EAClE,MAAM,CACP,CAAC;YAEF,MAAM,SAAS,GAAsB;gBACnC,MAAM,EAAE,QAAQ,CAAC,OAAO,CAAC,MAAO;gBAChC,IAAI,EAAE,UAAU;gBAChB,SAAS,EAAE,MAAM;gBACjB,MAAM,EAAE,6BAA6B;aACtC,CAAC;YAEF,cAAc,CAAC,GAAG,CAAC,EAAE,CAAC,UAAU,CAAC,QAAQ,EAAE,SAAS,CAAC,CAAC;YACtD,gBAAgB,CAAC,GAAG,CAAC,GAAG,QAAQ,CAAC,OAAO,CAAC,MAAO,OAAO,EAAE,SAAS,CAAC,CAAC;QACtE,CAAC;QAED,IAAI,IAAI,CAAC,cAAc,CAAC,2BAA2B,EAAE,CAAC;YACpD,IAAI,CAAC,oBAAoB,CACvB,EAAE,CAAC,UAAU,CAAC,MAAM,EACpB,QAAQ,CAAC,OAAO,CAAC,MAAO;YACxB,eAAe,CAAC,QAAQ,CAAC,OAAO,CAAC,MAAM,KAAK,EAAE,CAAC,UAAU,CAAC,MAAM,EAChE,MAAM,CACP,CAAC;YAEF,MAAM,SAAS,GAAsB;gBACnC,MAAM,EAAE,QAAQ,CAAC,OAAO,CAAC,MAAO;gBAChC,IAAI,EAAE,QAAQ;gBACd,SAAS,EAAE,MAAM;gBACjB,MAAM,EAAE,6BAA6B;aACtC,CAAC;YAEF,cAAc,CAAC,GAAG,CAAC,EAAE,CAAC,UAAU,CAAC,MAAM,EAAE,SAAS,CAAC,CAAC;YACpD,gBAAgB,CAAC,GAAG,CAAC,GAAG,QAAQ,CAAC,OAAO,CAAC,MAAO,OAAO,EAAE,SAAS,CAAC,CAAC;QACtE,CAAC;QAED,IAAI,CAAC,cAAc,CAAC,GAAG,CAAC,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE,CAAC;YACjD,IAAI,CAAC,oBAAoB,CACvB,QAAQ,CAAC,OAAO,CAAC,MAAM,EACvB,QAAQ,CAAC,OAAO,CAAC,MAAO;YACxB,eAAe,CAAC,IAAI;YACpB,yBAAyB,CAAC,SAAS,CACpC,CAAC;YAEF,MAAM,cAAc,GAAsB;gBACxC,MAAM,EAAE,QAAQ,CAAC,OAAO,CAAC,MAAO;gBAChC,IAAI,EAAE,EAAE,CAAC,UAAU,CAAC,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAwC;gBACnF,SAAS,EAAE,KAAK;gBAChB,MAAM,EAAE,eAAe;aACxB,CAAC;YAEF,cAAc,CAAC,GAAG,CAAC,QAAQ,CAAC,OAAO,CAAC,MAAM,EAAE,cAAc,CAAC,CAAC;YAC5D,gBAAgB,CAAC,GAAG,CAAC,GAAG,QAAQ,CAAC,OAAO,CAAC,MAAO,MAAM,EAAE,cAAc,CAAC,CAAC;QAC1E,CAAC;QAED,IAAI,IAAI,CAAC,cAAc,CAAC,2BAA2B,EAAE,CAAC;YACpD,KAAK,MAAM,0BAA0B,IAAI,IAAI,CAAC,cAAc,CAAC,2BAA2B,EAAE,CAAC;gBACzF,MAAM,UAAU,GAA2B,IAAI,CAAC,gBAAgB,CAC9D,EAAE,EACF,0BAA0B,CAAC,UAAU,CACtC,CAAC;gBAEF,MAAM,SAAS,GAAW,GAAG,0BAA0B,CAAC,aAAa,MAAM,CAAC;gBAC5E,MAAM,gBAAgB,GAAsB;oBAC1C,IAAI,EAAE,EAAE,CAAC,UAAU,CAAC,UAAU,CAAwC;oBACtE,MAAM,EAAE,0BAA0B,CAAC,aAAa;oBAChD,SAAS,EAAE,KAAK;oBAChB,MAAM,EAAE,6BAA6B;iBACtC,CAAC;gBAEF,MAAM,YAAY,GAAkC,cAAc,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC;gBACnF,MAAM,WAAW,GAAkC,gBAAgB,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC;gBAEnF,IAAI,YAAY,EAAE,CAAC;oBACjB,MAAM,IAAI,KAAK,CACb,gBAAgB,0BAA0B,CAAC,UAAU,2BAA2B,YAAY,CAAC,MAAM,oBAAoB,YAAY,CAAC,SAAS,eAAe,YAAY,CAAC,MAAM,GAAG,CACnL,CAAC;gBACJ,CAAC;qBAAM,IAAI,WAAW,EAAE,CAAC;oBACvB,MAAM,IAAI,KAAK,CACb,kBAAkB,0BAA0B,CAAC,aAAa,kCAAkC,WAAW,CAAC,IAAI,oBAAoB,WAAW,CAAC,SAAS,0BAA0B,WAAW,CAAC,MAAM,GAAG,CACrM,CAAC;gBACJ,CAAC;qBAAM,CAAC;oBACN,MAAM,YAAY,GAAuB,IAAI,CAAC,oBAAoB,CAChE,UAAU,EACV,0BAA0B,CAAC,aAAa;oBACxC,eAAe,CAAC,KAAK,EACrB,SAAS,CACV,CAAC;oBAEF,IAAI,YAAY,EAAE,CAAC;wBACjB,cAAc,CAAC,GAAG,CAAC,UAAU,EAAE,gBAAgB,CAAC,CAAC;wBACjD,gBAAgB,CAAC,GAAG,CAAC,YAAY,EAAE,gBAAgB,CAAC,CAAC;oBACvD,CAAC;gBACH,CAAC;YACH,CAAC;QACH,CAAC;IACH,CAAC;IAEO,oBAAoB,CAC1B,UAAkC,EAClC,aAAqB,EACrB,SAAkB,EAClB,mBAAuC;QAEvC,IAAI,aAAqB,CAAC;QAC1B,IAAI,IAAI,CAAC,UAAU,CAAC,aAAa,CAAC,EAAE,CAAC;YACnC,aAAa,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,cAAc,CAAC,eAAe,EAAE,aAAa,CAAC,CAAC;QACpF,CAAC;aAAM,CAAC;YACN,aAAa,GAAG,aAAa,CAAC;YAC9B,aAAa,GAAG,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,cAAc,CAAC,eAAe,EAAE,aAAa,CAAC,CAAC;QACnF,CAAC;QAED,aAAa,GAAG,wBAAI,CAAC,gBAAgB,CAAC,aAAa,CAAC,CAAC;QACrD,aAAa,GAAG,aAAa,CAAC,OAAO,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CAAC,6CAA6C;QAEjG,KAAK,MAAM,wBAAwB,IAAI,IAAI,CAAC,kBAAkB,EAAE,CAAC;YAC/D,IAAI,SAA6B,CAAC;YAElC,IAAI,wBAAwB,CAAC,aAAa,KAAK,aAAa,EAAE,CAAC;gBAC7D,IAAI,wBAAwB,CAAC,mBAAmB,KAAK,mBAAmB,EAAE,CAAC;oBACzE,SAAS;wBACP,4DAA4D;4BAC5D,qBAAqB,mBAAmB,IAAI,KAAK,gBAAgB;4BACjE,YAAY,aAAa,KAAK,CAAC;gBACnC,CAAC;YACH,CAAC;iBAAM,CAAC;gBACN,IAAI,YAAgC,CAAC;gBACrC,IAAI,WAA+B,CAAC;gBACpC,IAAI,aAAa,CAAC,UAAU,CAAC,wBAAwB,CAAC,aAAa,CAAC,EAAE,CAAC;oBACrE,YAAY,GAAG,aAAa,CAAC;oBAC7B,WAAW,GAAG,wBAAwB,CAAC,aAAa,CAAC;gBACvD,CAAC;qBAAM,IAAI,wBAAwB,CAAC,aAAa,CAAC,UAAU,CAAC,aAAa,CAAC,EAAE,CAAC;oBAC5E,YAAY,GAAG,wBAAwB,CAAC,aAAa,CAAC;oBACtD,WAAW,GAAG,aAAa,CAAC;gBAC9B,CAAC;gBAED,IAAI,YAAY,EAAE,CAAC;oBACjB,SAAS;wBACP,gEAAgE;4BAChE,KAAK,YAAY,UAAU,WAAW,KAAK,CAAC;gBAChD,CAAC;YACH,CAAC;YAED,IAAI,SAAS,EAAE,CAAC;gBACd,IAAI,CAAC,iBAAiB,CAAC,SAAS,CAAC,IAAI,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC;gBACvD,OAAO,SAAS,CAAC;YACnB,CAAC;QACH,CAAC;QAED,IAAI,CAAC,kBAAkB,CAAC,IAAI,CAAC;YAC3B,aAAa;YACb,UAAU;YACV,mBAAmB;YAEnB,SAAS;SACV,CAAC,CAAC;QAEH,OAAO,GAAG,aAAa,IAAI,mBAAmB,IAAI,KAAK,EAAE,CAAC;IAC5D,CAAC;IAEO,aAAa,CAAC,EAAsB;QAC1C,MAAM,gBAAgB,GAAyC,EAAE,CAAC,cAAc,CAC9E,IAAI,CAAC,cAAc,CAAC,YAAY,EAChC,EAAE,CAAC,GAAG,CAAC,QAAQ,CAChB,CAAC;QAEF,MAAM,aAAa,GAAW,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,cAAc,CAAC,YAAY,CAAC,CAAC;QAC7E,MAAM,QAAQ,GAAkC,EAAE,CAAC,0BAA0B,CAC3E,gBAAgB,CAAC,MAAM,EACvB;YACE,UAAU,EAAE,EAAE,CAAC,GAAG,CAAC,UAAU;YAC7B,QAAQ,EAAE,EAAE,CAAC,GAAG,CAAC,QAAQ;YACzB,aAAa,EAAE,EAAE,CAAC,GAAG,CAAC,aAAa;YACnC,yBAAyB,EAAE,IAAI;SAChC,EACD,aAAa;QACb,oBAAoB,CAAC,SAAS,EAC9B,IAAI,CAAC,cAAc,CAAC,YAAY,CACjC,CAAC;QAEF,IAAI,QAAQ,CAAC,OAAO,CAAC,WAAW,EAAE,CAAC;YACjC,QAAQ,CAAC,OAAO,CAAC,eAAe,GAAG,IAAI,CAAC,gBAAgB,CAAC;QAC3D,CAAC;QAED,OAAO,QAAQ,CAAC;IAClB,CAAC;IAEO,wBAAwB,CAC9B,EAAsB;QAEtB,MAAM,EACJ,cAAc,EAAE,EAAE,wBAAwB,EAAE,EAC7C,GAAG,IAAI,CAAC;QAET,MAAM,6BAA6B,GAE/B,CACF,SAAwC,EACxC,eAAwD,EACxD,IAA0C,EAC1C,UAA4E,EAC5E,4BAA2E,EAC3E,iBAAsE,EAChB,EAAE;YACxD,6BAA6B;YAC7B,EAAE,CAAC,WAAW,CAAC,OAAO,EAAE,CAAC;YACzB,EAAE,CAAC,WAAW,CAAC,MAAM,EAAE,CAAC;YAExB,IAAI,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,oBAAoB,eAAgB,CAAC,cAAc,GAAG,CAAC,CAAC;YAElG,MAAM,UAAU,GACd,EAAE,CAAC,8CAA8C,CAC/C,SAAS,EACT,eAAe,EACf,IAAI,EACJ,UAAU,EACV,4BAA4B,EAC5B,iBAAiB,CAClB,CAAC;YAEJ,IAAI,CAAC,mBAAmB,CAAC,EAAE,CAAC,CAAC;YAE7B,MAAM,eAAe,GACnB,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,mBAAmB,IAAI,CAAC,CAAC,eAAgB,CAAC,eAAe,CAAC;YAClF,MAAM,IAAI,GAA2B,eAAe,CAAC,CAAC,CAAC,aAAa,CAAC,CAAC,CAAC,MAAM,CAAC;YAE9E,IAAI,eAAe,EAAE,CAAC;gBACpB,iCAAiC;gBACjC,MAAM,gBAAgB,GAAwB,qCAAqC,CAAC,UAAU,CAAC,CAAC;gBAChG,IAAI,CAAC,uBAAuB,CAAC,IAAI,CAAC,KAAM,EAAE,eAAgB,EAAE,gBAAgB,CAAC,CAAC;YAChF,CAAC;YAED,MAAM,EAAE,IAAI,EAAE,YAAY,EAAE,GAAG,UAAU,CAAC;YAE1C,MAAM,IAAI,GAAgC,CACxC,qBAA8C,EAC9C,cAA8C,EAC9C,sBAAsD,EACtD,qBAA+B,EAC/B,uBAAwD,EACxD,EAAE;gBACF,MAAM,YAAY,GAAwB,UAAU,CAAC,UAAU,EAAE,CAAC;gBAElE,MAAM,oBAAoB,GAAgC,YAAY,CAAC,kBAAkB,EAAE,CAAC;gBAE5F,MAAM,EAAE,YAAY,EAAE,GAAG,IAAA,2DAA4B,EACnD,YAAY,EACZ,EAAE,EACF,IAAI,CAAC,kBAAkB,EACvB,IAAI,CACL,CAAC;gBAEF,MAAM,MAAM,GAA2B,YAAY,CAAC,IAAI,CACtD,UAAU,EACV,qBAAqB,EACrB,cAAc,EACd,sBAAsB,EACtB,qBAAqB,EACrB,uBAAuB,CACxB,CAAC;gBAED,MAA8B,CAAC,kBAAkB,GAAG,YAAY,CAAC;gBAElE,IAAI,CAAC,mBAAmB,CAAC,gBAAgB,CACvC,qBAAqB,oBAAqB,CAAC,cAAc,GAAG,CAC7D,CAAC;gBAEF,IAAI,CAAC,mBAAmB,CAAC,EAAE,CAAC,CAAC;gBAE7B,6BAA6B;gBAC7B,EAAE,CAAC,WAAW,CAAC,OAAO,EAAE,CAAC;gBACzB,EAAE,CAAC,WAAW,CAAC,MAAM,EAAE,CAAC;gBAExB,wBAAwB,CAAC,YAAY,EAAE,YAAY,CAAC,CAAC;gBAErD,OAAO,MAAM,CAAC;YAChB,CAAC,CAAC;YAEF,UAAU,CAAC,IAAI,GAAG,IAAI,CAAC;YAEvB,OAAO,UAAU,CAAC;QACpB,CAAC,CAAC;QAEF,OAAO,6BAA6B,CAAC;IACvC,CAAC;IAEO,yBAAyB,CAAC,IAAqB;QACrD,MAAM,2BAA2B,GAAmC,IAAI,CAAC,gBAAgB,CAAC;QAC1F,MAAM,sBAAsB,GAAuC,CAAC,UAAkB,EAAQ,EAAE;YAC9F,aAAa;QACf,CAAC,CAAC;QAEF,MAAM,EAAE,EAAE,EAAE,GAAG,IAAI,CAAC;QAEpB,MAAM,mBAAmB,GACvB,EAAE,CAAC,yBAAyB,CAC1B,EAAE,CAAC,GAAG,EACN,IAAI,CAAC,wBAAwB,CAAC,EAAE,CAAC,EACjC,IAAI,CAAC,gBAAgB,EACrB,2BAA2B,EAC3B,sBAAsB,CACvB,CAAC;QAEJ,mBAAmB,CAAC,8BAA8B,GAAG,CACnD,OAA6D,EAC7D,EAAE;YACF,+DAA+D;YAC/D,IAAI,CAAC,mBAAmB,CAAC,gBAAgB,CACvC,cAAc,EAAE,CAAC,WAAW,CAAC,WAAW,CAAC,WAAW,CAAC,OAAO,EAAE,CAAC,WAAW,CAAC,QAAQ,CACjF,eAAe,CAChB,SAAS,CACX,CAAC;QACJ,CAAC,CAAC;QAEF,OAAO,mBAAmB,CAAC;IAC7B,CAAC;IAEO,6BAA6B,CACnC,IAAqB,EACrB,QAAuC;QAEvC,MAAM,EAAE,EAAE,EAAE,MAAM,EAAE,GAAG,IAAI,CAAC;QAE5B,IAAI,YAAkD,CAAC;QAEvD,IAAI,QAAQ,CAAC,OAAO,CAAC,WAAW,EAAE,CAAC;YACjC,YAAY,GAAG,EAAE,CAAC,6BAA6B,CAAC,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC,CAAC;QAC5E,CAAC;aAAM,CAAC;YACN,YAAY,GAAG,EAAE,CAAC,kBAAkB,CAAC,QAAQ,CAAC,OAAO,EAAE,SAAS,EAAE,MAAM,CAAC,CAAC;QAC5E,CAAC;QAED,IAAI,CAAC,6BAA6B,CAAC,YAAY,EAAE,IAAI,CAAC,CAAC;QAEvD,OAAO,YAAY,CAAC;IACtB,CAAC;IAEO,uBAAuB,CAC7B,IAAqB,EACrB,QAAuC;QAEvC,MAAM,EAAE,EAAE,EAAE,MAAM,EAAE,GAAG,IAAI,CAAC;QAE5B,MAAM,iBAAiB,GAAmC,CAAC,UAAkC,EAAQ,EAAE;YACrG,IAAI,CAAC,uBAAuB,CAAC,EAAE,EAAE,UAAU,CAAC,CAAC;QAC/C,CAAC,CAAC;QAEF,MAAM,YAAY,GAAuB,EAAE,CAAC,uBAAuB,CACjE,QAAQ,CAAC,SAAS,EAClB,QAAQ,CAAC,OAAO,EAChB,MAAM,EACN,IAAI,CAAC,wBAAwB,CAAC,EAAE,CAAC,EACjC,IAAI,CAAC,gBAAgB,EACrB,iBAAiB,EACjB,QAAQ,CAAC,iBAAiB,EAC1B,QAAQ,CAAC,YAAY,CACtB,CAAC;QAEF,OAAO,YAAY,CAAC;IACtB,CAAC;IAEO,6BAA6B,CAAC,YAAsC,EAAE,IAAqB;QACjG,MAAM,EAAE,eAAe,EAAE,GAAG,IAAI,CAAC;QAEjC,MAAM,EAAE,aAAa,EAAE,kBAAkB,EAAE,GAAG,YAAY,CAAC;QAC3D,IAAK,kBAAyD,CAAC,KAAK,KAAK,eAAe,EAAE,CAAC;YACzF,OAAO;QACT,CAAC;QAED,YAAY,CAAC,mBAAmB,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,cAAc,CAAC,eAAe,CAAC;QAE7E,iCAAiC;QACjC,MAAM,aAAa,GAEf,CACF,QAAgB,EAChB,wBAAwF,EACxF,OAAiD,EACjD,yBAA+C,EACX,EAAE;YACtC,IAAI,CAAC,yBAAyB,EAAE,CAAC;gBAC/B,MAAM,gBAAgB,GAAuC,eAAe,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC;gBAC3F,IAAI,gBAAgB,EAAE,CAAC;oBACrB,OAAO,gBAAgB,CAAC;gBAC1B,CAAC;YACH,CAAC;YAED,MAAM,MAAM,GAAuC,kBAAkB,CACnE,QAAQ,EACR,wBAAwB,EACxB,OAAO,EACP,yBAAyB,CAC1B,CAAC;YACF,IAAI,MAAM,EAAE,CAAC;gBACX,eAAe,CAAC,GAAG,CAAC,QAAQ,EAAE,MAAM,CAAC,CAAC;YACxC,CAAC;iBAAM,CAAC;gBACN,eAAe,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;YACnC,CAAC;YACD,OAAO,MAAM,CAAC;QAChB,CAAC,CAAC;QAEF,aAAa,CAAC,KAAK,GAAG,eAAe,CAAC;QAEtC,YAAY,CAAC,aAAa,GAAG,aAAa,CAAC;IAC7C,CAAC;IAEO,8BAA8B,CAAC,IAAqB;QAC1D,MAAM,EAAE,gBAAgB,EAAE,EAAE,EAAE,MAAM,EAAE,GAAG,IAAI,CAAC;QAE9C,MAAM,IAAI,GAAuB,EAAE,CAAC,kCAAkC,CACpE,MAAM,EACN,IAAI,CAAC,wBAAwB,CAAC,EAAE,CAAC,EACjC,gBAAgB,EAChB,gBAAgB,EAChB,gBAAgB,CACjB,CAAC;QAEF,OAAO,IAAI,CAAC;IACd,CAAC;IAEO,gBAAgB,CAAC,EAAsB,EAAE,cAAsB;QACrE,QAAQ,cAAc,CAAC,WAAW,EAAE,EAAE,CAAC;YACrC,KAAK,UAAU;gBACb,OAAO,EAAE,CAAC,UAAU,CAAC,QAAQ,CAAC;YAEhC,KAAK,KAAK;gBACR,OAAO,EAAE,CAAC,UAAU,CAAC,GAAG,CAAC;YAE3B,KAAK,KAAK;gBACR,OAAO,EAAE,CAAC,UAAU,CAAC,GAAG,CAAC;YAE3B,KAAK,QAAQ;gBACX,OAAO,EAAE,CAAC,UAAU,CAAC,MAAM,CAAC;YAE9B,KAAK,QAAQ;gBACX,OAAO,EAAE,CAAC,UAAU,CAAC,MAAM,CAAC;YAE9B,KAAK,QAAQ;gBACX,OAAO,EAAE,CAAC,UAAU,CAAC,MAAM,CAAC;YAE9B;gBACE,MAAM,IAAI,KAAK,CAAC,IAAI,cAAc,oCAAoC,CAAC,CAAC;QAC5E,CAAC;IACH,CAAC;IAEO,uBAAuB,CAC7B,IAAqB,EACrB,eAA4C,EAC5C,gBAAqC;QAErC,MAAM,EAAE,wBAAwB,EAAE,uBAAuB,EAAE,GAAG,IAAI,CAAC;QACnE,IAAI,WAAW,GAAuB,IAAI,CAAC,MAAM,CAAC;QAClD,IAAI,CAAC,WAAW,EAAE,CAAC;YACjB,MAAM,UAAU,GAA0B;gBACxC,kBAAkB,EAAE,IAAI,CAAC,cAAc,CAAC,kBAAkB;aAC3D,CAAC;YACF,IAAI,CAAC,MAAM,GAAG,WAAW,GAAG,IAAI,uBAAM,CAAC,OAAO,CAAC,OAAO,CAAC,uBAAuB,CAAC,EAAE;gBAC/E,UAAU,EAAE,UAAU;aACvB,CAAC,CAAC;YAEH,WAAW,CAAC,EAAE,CAAC,SAAS,EAAE,CAAC,QAAuC,EAAE,EAAE;gBACpE,MAAM,EAAE,SAAS,EAAE,kBAAkB,EAAE,IAAI,EAAE,MAAM,EAAE,GAAG,QAAQ,CAAC;gBACjE,MAAM,MAAM,GAAiC,uBAAuB,CAAC,GAAG,CAAC,kBAAkB,CAAC,CAAC;gBAE7F,IAAI,IAAI,KAAK,OAAO,EAAE,CAAC;oBACrB,MAAM,KAAK,GAAU,MAAM,CAAC,MAAM,CAAC,IAAI,KAAK,CAAC,MAAM,CAAC,OAAO,CAAC,EAAE,MAAM,CAAC,CAAC;oBACtE,IAAI,MAAM,EAAE,CAAC;wBACX,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;oBACvB,CAAC;yBAAM,CAAC;wBACN,IAAI,CAAC,mBAAmB,CAAC,cAAc,CACrC,mDAAmD,kBAAkB,KAAK,KAAK,EAAE,CAClF,CAAC;oBACJ,CAAC;gBACH,CAAC;qBAAM,IAAI,MAAM,EAAE,CAAC;oBAClB,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;gBACzB,CAAC;qBAAM,CAAC;oBACN,IAAI,CAAC,mBAAmB,CAAC,cAAc,CACrC,oDAAoD,kBAAkB,EAAE,CACzE,CAAC;gBACJ,CAAC;gBAED,uBAAuB,CAAC,MAAM,CAAC,kBAAkB,CAAC,CAAC;gBACnD,wBAAwB,CAAC,MAAM,CAAC,kBAAkB,CAAC,CAAC;YACtD,CAAC,CAAC,CAAC;YAEH,WAAW,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC,QAAgB,EAAE,EAAE;gBAC5C,IAAI,uBAAuB,CAAC,IAAI,EAAE,CAAC;oBACjC,MAAM,KAAK,GAAU,IAAI,KAAK,CAAC,wCAAwC,QAAQ,GAAG,CAAC,CAAC;oBACpF,KAAK,MAAM,EAAE,MAAM,EAAE,eAAe,EAAE,IAAI,uBAAuB,CAAC,MAAM,EAAE,EAAE,CAAC;wBAC3E,eAAe,CAAC,KAAK,CAAC,CAAC;oBACzB,CAAC;oBACD,uBAAuB,CAAC,KAAK,EAAE,CAAC;gBAClC,CAAC;YACH,CAAC,CAAC,CAAC;YAEH,WAAW,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC,GAAU,EAAE,EAAE;gBACvC,KAAK,MAAM,EAAE,MAAM,EAAE,eAAe,EAAE,IAAI,uBAAuB,CAAC,MAAM,EAAE,EAAE,CAAC;oBAC3E,eAAe,CAAC,GAAG,CAAC,CAAC;gBACvB,CAAC;gBACD,uBAAuB,CAAC,KAAK,EAAE,CAAC;YAClC,CAAC,CAAC,CAAC;QACL,CAAC;QAED,oBAAoB;QACpB,MAAM,MAAM,GAAW,WAAW,CAAC;QAEnC,MAAM,SAAS,GAAW,EAAE,IAAI,CAAC,cAAc,CAAC;QAChD,MAAM,gBAAgB,GAAoC,IAAI,OAAO,CACnE,CAAC,OAAiD,EAAE,MAA4B,EAAE,EAAE;YAClF,uBAAuB,CAAC,GAAG,CAAC,SAAS,EAAE,EAAE,OAAO,EAAE,MAAM,EAAE,CAAC,CAAC;YAE5D,IAAI,CAAC,mBAAmB,CAAC,SAAS,CAAC,8BAA8B,eAAe,CAAC,cAAc,EAAE,CAAC,CAAC;YACnG,MAAM,OAAO,GAAiC;gBAC5C,eAAe;gBACf,gBAAgB;gBAChB,iBAAiB,EAAE,IAAI,CAAC,kBAAkB;gBAC1C,SAAS;aACV,CAAC;YAEF,MAAM,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC;QAC9B,CAAC,CACF,CAAC;QAEF,wBAAwB,CAAC,GAAG,CAAC,SAAS,EAAE,gBAAgB,CAAC,CAAC;IAC5D,CAAC;IAEO,cAAc;QACpB,MAAM,IAAI,GAAgC,IAAI,CAAC,KAAK,CAAC;QACrD,IAAI,CAAC,IAAI,EAAE,CAAC;YACV,OAAO;QACT,CAAC;QAED,MAAM,EAAE,MAAM,EAAE,GAAG,IAAI,CAAC;QACxB,IAAI,MAAM,EAAE,CAAC;YACX,MAAM,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;YAC1B,IAAI,CAAC,MAAM,GAAG,SAAS,CAAC;QAC1B,CAAC;IACH,CAAC;CACF;AAvoCD,8CAuoCC;AAED,SAAS,qCAAqC,CAC5C,cAA0C;;IAE1C,MAAM,OAAO,GAA2B,cAAmD,CAAC;IAC5F,8DAA8D;IAC9D,MAAM,eAAe,GAAgB,CAAC,MAAA,OAAO,CAAC,KAAK,mCAAI,OAAO,CAAC,QAAQ,EAAE,CAAC,CAAC,eAAe,CAAC;IAE3F,MAAM,gBAAgB,GAAwB,IAAI,GAAG,EAAE,CAAC;IACxD,KAAK,MAAM,QAAQ,IAAI,eAAe,EAAE,CAAC;QACvC,MAAM,UAAU,GAAuC,cAAc,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC;QAC9F,IAAI,UAAU,IAAI,CAAC,UAAU,CAAC,iBAAiB,EAAE,CAAC;YAChD,gBAAgB,CAAC,GAAG,CAAC,UAAU,CAAC,QAAQ,EAAE,UAAU,CAAC,IAAI,CAAC,CAAC;QAC7D,CAAC;IACH,CAAC;IACD,OAAO,gBAAgB,CAAC;AAC1B,CAAC;AAED,SAAS,8BAA8B,CAAC,OAA4B;IAClE,MAAM,gBAAgB,GAAwB,IAAI,GAAG,EAAE,CAAC;IACxD,KAAK,MAAM,UAAU,IAAI,OAAO,CAAC,cAAc,EAAE,EAAE,CAAC;QAClD,IAAI,CAAC,UAAU,CAAC,iBAAiB,EAAE,CAAC;YAClC,gBAAgB,CAAC,GAAG,CAAC,UAAU,CAAC,QAAQ,EAAE,UAAU,CAAC,IAAI,CAAC,CAAC;QAC7D,CAAC;IACH,CAAC;IACD,OAAO,gBAAgB,CAAC;AAC1B,CAAC","sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.\n// See LICENSE in the project root for license information.\n\nimport * as crypto from 'crypto';\nimport * as path from 'path';\nimport { Worker } from 'worker_threads';\n\nimport * as semver from 'semver';\nimport type * as TTypescript from 'typescript';\nimport { JsonFile, type IPackageJson, Path, FileError } from '@rushstack/node-core-library';\nimport type { ITerminal } from '@rushstack/terminal';\nimport type { IScopedLogger } from '@rushstack/heft';\n\nimport type {\n ExtendedBuilderProgram,\n ExtendedTypeScript,\n IExtendedSolutionBuilder\n} from './internalTypings/TypeScriptInternals';\nimport type { ITypeScriptConfigurationJson } from './TypeScriptPlugin';\nimport type { PerformanceMeasurer } from './Performance';\nimport type {\n ICachedEmitModuleKind,\n ITranspilationRequestMessage,\n ITranspilationResponseMessage,\n ITypescriptWorkerData\n} from './types';\nimport { configureProgramForMultiEmit } from './configureProgramForMultiEmit';\n\nexport interface ITypeScriptBuilderConfiguration extends ITypeScriptConfigurationJson {\n /**\n * The root folder of the build.\n */\n buildFolderPath: string;\n\n /**\n * The folder to write build metadata.\n */\n buildMetadataFolderPath: string;\n\n /**\n * The path to the TypeScript tool.\n */\n typeScriptToolPath: string;\n\n // watchMode: boolean;\n\n /**\n * The path to the tsconfig file being built.\n */\n tsconfigPath: string;\n\n /**\n * The scoped logger that the builder will log to.\n */\n scopedLogger: IScopedLogger;\n\n /**\n * The callback used to emit the typescript program (or programs) from the builder.\n */\n emitChangedFilesCallback: (\n program: TTypescript.Program,\n changedFiles?: Set<TTypescript.SourceFile>\n ) => void;\n}\n\ntype TSolutionHost = TTypescript.SolutionBuilderHost<TTypescript.EmitAndSemanticDiagnosticsBuilderProgram>;\ntype TWatchCompilerHost =\n TTypescript.WatchCompilerHostOfFilesAndCompilerOptions<TTypescript.EmitAndSemanticDiagnosticsBuilderProgram>;\ntype TWatchSolutionHost =\n TTypescript.SolutionBuilderWithWatchHost<TTypescript.EmitAndSemanticDiagnosticsBuilderProgram>;\ntype TWatchProgram =\n TTypescript.WatchOfFilesAndCompilerOptions<TTypescript.EmitAndSemanticDiagnosticsBuilderProgram>;\n\ninterface ICompilerCapabilities {\n /**\n * Support for incremental compilation via `ts.createIncrementalProgram()`.\n * Introduced with TypeScript 3.6.\n */\n incrementalProgram: boolean;\n\n /**\n * Support for composite projects via `ts.createSolutionBuilder()`.\n * Introduced with TypeScript 3.0.\n */\n solutionBuilder: boolean;\n}\n\ninterface IFileToWrite {\n filePath: string;\n data: string;\n}\n\ninterface IModuleKindReason {\n kind: keyof typeof TTypescript.ModuleKind;\n outDir: string;\n extension: '.js' | '.cjs' | '.mjs';\n reason: string;\n}\n\ninterface IExtendedEmitResult extends TTypescript.EmitResult {\n changedSourceFiles: Set<TTypescript.SourceFile>;\n filesToWrite: IFileToWrite[];\n}\n\ninterface IPendingWork {\n (): void;\n}\n\ninterface ITranspileSignal {\n resolve: (result: TTypescript.EmitResult) => void;\n reject: (error: Error) => void;\n}\n\nconst OLDEST_SUPPORTED_TS_MAJOR_VERSION: number = 2;\nconst OLDEST_SUPPORTED_TS_MINOR_VERSION: number = 9;\n\nconst NEWEST_SUPPORTED_TS_MAJOR_VERSION: number = 5;\nconst NEWEST_SUPPORTED_TS_MINOR_VERSION: number = 6;\n\ninterface ITypeScriptTool {\n ts: ExtendedTypeScript;\n system: TTypescript.System;\n measureSync: PerformanceMeasurer;\n\n sourceFileCache: Map<string, TTypescript.SourceFile>;\n\n watchProgram: TWatchProgram | undefined;\n\n solutionBuilder: IExtendedSolutionBuilder | undefined;\n\n rawDiagnostics: TTypescript.Diagnostic[];\n pendingOperations: Set<IPendingWork>;\n\n executing: boolean;\n\n worker: Worker | undefined;\n pendingTranspilePromises: Map<number, Promise<TTypescript.EmitResult>>;\n pendingTranspileSignals: Map<number, ITranspileSignal>;\n\n reportDiagnostic: TTypescript.DiagnosticReporter;\n}\n\nexport class TypeScriptBuilder {\n private readonly _configuration: ITypeScriptBuilderConfiguration;\n private readonly _typescriptLogger: IScopedLogger;\n private readonly _typescriptTerminal: ITerminal;\n\n private _typescriptVersion!: string;\n private _typescriptParsedVersion!: semver.SemVer;\n\n private _capabilities!: ICompilerCapabilities;\n private _useSolutionBuilder!: boolean;\n\n private _moduleKindsToEmit!: ICachedEmitModuleKind[];\n private readonly _suppressedDiagnosticCodes: Set<number> = new Set();\n\n private __tsCacheFilePath: string | undefined;\n\n private _tool: ITypeScriptTool | undefined = undefined;\n\n private _nextRequestId: number = 0;\n\n private get _tsCacheFilePath(): string {\n if (!this.__tsCacheFilePath) {\n // TypeScript internally handles if the tsconfig options have changed from when the tsbuildinfo file was created.\n // We only need to hash our additional Heft configuration.\n const configHash: crypto.Hash = crypto.createHash('sha1');\n\n configHash.update(JSON.stringify(this._configuration.additionalModuleKindsToEmit || {}));\n const serializedConfigHash: string = configHash\n .digest('base64')\n .slice(0, 8)\n .replace(/\\+/g, '-')\n .replace(/\\//g, '_');\n\n // This conversion is theoretically redundant, but it is here to make absolutely sure that the path is formatted\n // using only '/' as the directory separator so that incremental builds don't break on Windows.\n // TypeScript will normalize to '/' when serializing, but not on the direct input, and uses exact string equality.\n const normalizedCacheFolderPath: string = Path.convertToSlashes(\n this._configuration.buildMetadataFolderPath\n );\n this.__tsCacheFilePath = `${normalizedCacheFolderPath}/ts_${serializedConfigHash}.json`;\n }\n\n return this.__tsCacheFilePath;\n }\n\n public constructor(configuration: ITypeScriptBuilderConfiguration) {\n this._configuration = configuration;\n this._typescriptLogger = configuration.scopedLogger;\n this._typescriptTerminal = configuration.scopedLogger.terminal;\n }\n\n public async invokeAsync(onChangeDetected?: () => void): Promise<void> {\n if (!this._tool) {\n // Determine the compiler version\n const compilerPackageJsonFilename: string = path.join(\n this._configuration.typeScriptToolPath,\n 'package.json'\n );\n const packageJson: IPackageJson = await JsonFile.loadAsync(compilerPackageJsonFilename);\n this._typescriptVersion = packageJson.version;\n const parsedVersion: semver.SemVer | null = semver.parse(this._typescriptVersion);\n if (!parsedVersion) {\n throw new Error(\n `Unable to parse version \"${this._typescriptVersion}\" for TypeScript compiler package in: ` +\n compilerPackageJsonFilename\n );\n }\n this._typescriptParsedVersion = parsedVersion;\n\n // Detect what features this compiler supports. Note that manually comparing major/minor numbers\n // loosens the matching to accept prereleases such as \"3.6.0-dev.20190530\"\n this._capabilities = {\n incrementalProgram: false,\n solutionBuilder: this._typescriptParsedVersion.major >= 3\n };\n\n if (\n this._typescriptParsedVersion.major > 3 ||\n (this._typescriptParsedVersion.major === 3 && this._typescriptParsedVersion.minor >= 6)\n ) {\n this._capabilities.incrementalProgram = true;\n }\n\n this._useSolutionBuilder = !!this._configuration.buildProjectReferences;\n if (this._useSolutionBuilder && !this._capabilities.solutionBuilder) {\n throw new Error(\n `Building project references requires TypeScript@>=3.0, but the current version is ${this._typescriptVersion}`\n );\n }\n\n // Report a warning if the TypeScript version is too old/new. The current oldest supported version is\n // TypeScript 2.9. Prior to that the \"ts.getConfigFileParsingDiagnostics()\" API is missing; more fixups\n // would be required to deal with that. We won't do that work unless someone requests it.\n if (\n this._typescriptParsedVersion.major < OLDEST_SUPPORTED_TS_MAJOR_VERSION ||\n (this._typescriptParsedVersion.major === OLDEST_SUPPORTED_TS_MAJOR_VERSION &&\n this._typescriptParsedVersion.minor < OLDEST_SUPPORTED_TS_MINOR_VERSION)\n ) {\n // We don't use writeWarningLine() here because, if the person wants to take their chances with\n // a seemingly unsupported compiler, their build should be allowed to succeed.\n this._typescriptTerminal.writeLine(\n `The TypeScript compiler version ${this._typescriptVersion} is very old` +\n ` and has not been tested with Heft; it may not work correctly.`\n );\n } else if (\n this._typescriptParsedVersion.major > NEWEST_SUPPORTED_TS_MAJOR_VERSION ||\n (this._typescriptParsedVersion.major === NEWEST_SUPPORTED_TS_MAJOR_VERSION &&\n this._typescriptParsedVersion.minor > NEWEST_SUPPORTED_TS_MINOR_VERSION)\n ) {\n this._typescriptTerminal.writeLine(\n `The TypeScript compiler version ${this._typescriptVersion} is newer` +\n ' than the latest version that was tested with Heft ' +\n `(${NEWEST_SUPPORTED_TS_MAJOR_VERSION}.${NEWEST_SUPPORTED_TS_MINOR_VERSION}); it may not work correctly.`\n );\n }\n\n const ts: ExtendedTypeScript = require(this._configuration.typeScriptToolPath);\n\n ts.performance.enable();\n\n const suppressedCodes: (number | undefined)[] = [\n ts.Diagnostics.Property_0_has_no_initializer_and_is_not_definitely_assigned_in_the_constructor?.code,\n // This diagnostic code is not present in old versions of TypeScript\n ts.Diagnostics\n .Element_implicitly_has_an_any_type_because_expression_of_type_0_can_t_be_used_to_index_type_1?.code\n ];\n for (const code of suppressedCodes) {\n if (code !== undefined) {\n this._suppressedDiagnosticCodes.add(code);\n }\n }\n\n const measureTsPerformance: PerformanceMeasurer = <TResult extends object | void>(\n measurementName: string,\n fn: () => TResult\n ) => {\n const beforeName: string = `before${measurementName}`;\n ts.performance.mark(beforeName);\n const result: TResult = fn();\n const afterName: string = `after${measurementName}`;\n ts.performance.mark(afterName);\n ts.performance.measure(measurementName, beforeName, afterName);\n return {\n ...result,\n duration: ts.performance.getDuration(measurementName),\n count: ts.performance.getCount(beforeName)\n };\n };\n\n this._typescriptTerminal.writeLine(`Using TypeScript version ${ts.version}`);\n\n const rawDiagnostics: TTypescript.Diagnostic[] = [];\n\n const pendingOperations: Set<IPendingWork> = new Set();\n\n const clearTimeout = (timeout: IPendingWork): void => {\n pendingOperations.delete(timeout);\n };\n\n const setTimeout = <T extends unknown[]>(\n fn: (...args: T) => void,\n ms: number,\n ...args: T\n ): IPendingWork => {\n const timeout: IPendingWork = () => {\n fn(...args);\n };\n pendingOperations.add(timeout);\n if (!this._tool?.executing && onChangeDetected) {\n onChangeDetected();\n }\n return timeout;\n };\n\n // Need to also update watchFile and watchDirectory\n const system: TTypescript.System = {\n ...ts.sys,\n getCurrentDirectory: () => this._configuration.buildFolderPath,\n clearTimeout,\n setTimeout\n };\n\n this._tool = {\n ts,\n system,\n\n measureSync: measureTsPerformance,\n\n sourceFileCache: new Map(),\n\n watchProgram: undefined,\n solutionBuilder: undefined,\n\n rawDiagnostics,\n\n pendingOperations,\n\n executing: false,\n\n reportDiagnostic: (diagnostic: TTypescript.Diagnostic) => {\n rawDiagnostics.push(diagnostic);\n },\n\n worker: undefined,\n\n pendingTranspilePromises: new Map(),\n pendingTranspileSignals: new Map()\n };\n }\n\n const { performance } = this._tool.ts;\n // Reset the performance counters to 0 to avoid contamination from previous runs\n performance.disable();\n performance.enable();\n\n if (onChangeDetected !== undefined) {\n await this._runWatchAsync(this._tool);\n } else if (this._useSolutionBuilder) {\n await this._runSolutionBuildAsync(this._tool);\n } else {\n await this._runBuildAsync(this._tool);\n }\n }\n\n public async _runWatchAsync(tool: ITypeScriptTool): Promise<void> {\n const {\n ts,\n measureSync: measureTsPerformance,\n pendingOperations,\n rawDiagnostics,\n pendingTranspilePromises\n } = tool;\n\n if (!tool.solutionBuilder && !tool.watchProgram) {\n //#region CONFIGURE\n const { duration: configureDurationMs, tsconfig } = measureTsPerformance('Configure', () => {\n const _tsconfig: TTypescript.ParsedCommandLine = this._loadTsconfig(ts);\n this._validateTsconfig(ts, _tsconfig);\n\n return {\n tsconfig: _tsconfig\n };\n });\n this._typescriptTerminal.writeVerboseLine(`Configure: ${configureDurationMs}ms`);\n //#endregion\n\n if (this._useSolutionBuilder) {\n const solutionHost: TWatchSolutionHost = this._buildWatchSolutionBuilderHost(tool);\n const builder: TTypescript.SolutionBuilder<TTypescript.EmitAndSemanticDiagnosticsBuilderProgram> =\n ts.createSolutionBuilderWithWatch(solutionHost, [this._configuration.tsconfigPath], {});\n\n tool.solutionBuilder = builder as IExtendedSolutionBuilder;\n\n builder.build();\n } else {\n const compilerHost: TWatchCompilerHost = this._buildWatchCompilerHost(tool, tsconfig);\n tool.watchProgram = ts.createWatchProgram(compilerHost);\n }\n }\n\n if (pendingOperations.size > 0) {\n rawDiagnostics.length = 0;\n tool.executing = true;\n for (const operation of pendingOperations) {\n pendingOperations.delete(operation);\n operation();\n }\n if (pendingTranspilePromises.size) {\n const emitResults: TTypescript.EmitResult[] = await Promise.all(pendingTranspilePromises.values());\n for (const { diagnostics } of emitResults) {\n for (const diagnostic of diagnostics) {\n rawDiagnostics.push(diagnostic);\n }\n }\n }\n // eslint-disable-next-line require-atomic-updates\n tool.executing = false;\n }\n this._logDiagnostics(ts, rawDiagnostics, this._useSolutionBuilder);\n }\n\n public async _runBuildAsync(tool: ITypeScriptTool): Promise<void> {\n const { ts, measureSync: measureTsPerformance, pendingTranspilePromises } = tool;\n\n //#region CONFIGURE\n const {\n duration: configureDurationMs,\n tsconfig,\n compilerHost\n } = measureTsPerformance('Configure', () => {\n const _tsconfig: TTypescript.ParsedCommandLine = this._loadTsconfig(ts);\n this._validateTsconfig(ts, _tsconfig);\n\n const _compilerHost: TTypescript.CompilerHost = this._buildIncrementalCompilerHost(tool, _tsconfig);\n\n return {\n tsconfig: _tsconfig,\n compilerHost: _compilerHost\n };\n });\n this._typescriptTerminal.writeVerboseLine(`Configure: ${configureDurationMs}ms`);\n //#endregion\n\n //#region PROGRAM\n // There will be only one program here; emit will get a bit abused if we produce multiple outputs\n let builderProgram: TTypescript.BuilderProgram | undefined = undefined;\n let innerProgram: TTypescript.Program;\n\n const isolatedModules: boolean =\n !!this._configuration.useTranspilerWorker && !!tsconfig.options.isolatedModules;\n const mode: 'both' | 'declaration' = isolatedModules ? 'declaration' : 'both';\n\n let filesToTranspile: Map<string, string> | undefined;\n\n if (tsconfig.options.incremental) {\n // Use ts.createEmitAndSemanticDiagnositcsBuilderProgram directly because the customizations performed by\n // _getCreateBuilderProgram duplicate those performed in this function for non-incremental build.\n const oldProgram: TTypescript.EmitAndSemanticDiagnosticsBuilderProgram | undefined =\n ts.readBuilderProgram(tsconfig.options, compilerHost);\n builderProgram = ts.createEmitAndSemanticDiagnosticsBuilderProgram(\n tsconfig.fileNames,\n tsconfig.options,\n compilerHost,\n oldProgram,\n ts.getConfigFileParsingDiagnostics(tsconfig),\n tsconfig.projectReferences\n );\n filesToTranspile = getFilesToTranspileFromBuilderProgram(builderProgram);\n innerProgram = builderProgram.getProgram();\n } else {\n innerProgram = ts.createProgram({\n rootNames: tsconfig.fileNames,\n options: tsconfig.options,\n projectReferences: tsconfig.projectReferences,\n host: compilerHost,\n oldProgram: undefined,\n configFileParsingDiagnostics: ts.getConfigFileParsingDiagnostics(tsconfig)\n });\n filesToTranspile = getFilesToTranspileFromProgram(innerProgram);\n }\n\n // Prefer the builder program, since it is what gives us incremental builds\n const genericProgram: TTypescript.BuilderProgram | TTypescript.Program = builderProgram || innerProgram;\n\n this._logReadPerformance(ts);\n //#endregion\n\n if (isolatedModules) {\n // Kick the transpilation worker.\n this._queueTranspileInWorker(tool, genericProgram.getCompilerOptions(), filesToTranspile);\n }\n\n //#region ANALYSIS\n const { duration: diagnosticsDurationMs, diagnostics: preDiagnostics } = measureTsPerformance(\n 'Analyze',\n () => {\n const rawDiagnostics: TTypescript.Diagnostic[] = [\n ...genericProgram.getConfigFileParsingDiagnostics(),\n ...genericProgram.getOptionsDiagnostics(),\n ...genericProgram.getSyntacticDiagnostics(),\n ...genericProgram.getGlobalDiagnostics(),\n ...genericProgram.getSemanticDiagnostics()\n ];\n return { diagnostics: rawDiagnostics };\n }\n );\n this._typescriptTerminal.writeVerboseLine(`Analyze: ${diagnosticsDurationMs}ms`);\n //#endregion\n\n //#region EMIT\n const { changedFiles } = configureProgramForMultiEmit(innerProgram, ts, this._moduleKindsToEmit, mode);\n\n const emitResult: TTypescript.EmitResult = genericProgram.emit(\n undefined,\n // The writeFile callback must be provided for the multi-emit redirector\n ts.sys.writeFile,\n undefined,\n undefined,\n undefined\n );\n\n this._cleanupWorker();\n //#endregion\n\n this._logEmitPerformance(ts);\n\n //#region FINAL_ANALYSIS\n // Need to ensure that we include emit diagnostics, since they might not be part of the other sets\n const rawDiagnostics: TTypescript.Diagnostic[] = [...preDiagnostics, ...emitResult.diagnostics];\n //#endregion\n\n this._configuration.emitChangedFilesCallback(innerProgram, changedFiles);\n\n if (pendingTranspilePromises.size) {\n const emitResults: TTypescript.EmitResult[] = await Promise.all(pendingTranspilePromises.values());\n for (const { diagnostics } of emitResults) {\n for (const diagnostic of diagnostics) {\n rawDiagnostics.push(diagnostic);\n }\n }\n }\n\n this._logDiagnostics(ts, rawDiagnostics);\n // Reset performance counters in case any are used in the callback\n ts.performance.disable();\n ts.performance.enable();\n }\n\n public async _runSolutionBuildAsync(tool: ITypeScriptTool): Promise<void> {\n this._typescriptTerminal.writeVerboseLine(`Using solution mode`);\n\n const { ts, measureSync, rawDiagnostics, pendingTranspilePromises } = tool;\n rawDiagnostics.length = 0;\n\n if (!tool.solutionBuilder) {\n //#region CONFIGURE\n const { duration: configureDurationMs, solutionBuilderHost } = measureSync('Configure', () => {\n const _tsconfig: TTypescript.ParsedCommandLine = this._loadTsconfig(ts);\n this._validateTsconfig(ts, _tsconfig);\n\n const _solutionBuilderHost: TSolutionHost = this._buildSolutionBuilderHost(tool);\n\n return {\n solutionBuilderHost: _solutionBuilderHost\n };\n });\n this._typescriptTerminal.writeVerboseLine(`Configure: ${configureDurationMs}ms`);\n //#endregion\n\n tool.solutionBuilder = ts.createSolutionBuilder(\n solutionBuilderHost,\n [this._configuration.tsconfigPath],\n {}\n ) as IExtendedSolutionBuilder;\n } else {\n // Force reload everything from disk\n for (const project of tool.solutionBuilder.getBuildOrder()) {\n tool.solutionBuilder.invalidateProject(project, 1);\n }\n }\n\n //#region EMIT\n // Ignoring the exit status because we only care about presence of diagnostics\n tool.solutionBuilder.build();\n this._cleanupWorker();\n //#endregion\n\n if (pendingTranspilePromises.size) {\n const emitResults: TTypescript.EmitResult[] = await Promise.all(pendingTranspilePromises.values());\n for (const { diagnostics } of emitResults) {\n for (const diagnostic of diagnostics) {\n rawDiagnostics.push(diagnostic);\n }\n }\n }\n\n this._logDiagnostics(ts, rawDiagnostics, true);\n }\n\n private _logDiagnostics(\n ts: ExtendedTypeScript,\n rawDiagnostics: TTypescript.Diagnostic[],\n isSolutionMode?: boolean\n ): void {\n const diagnostics: readonly TTypescript.Diagnostic[] = ts.sortAndDeduplicateDiagnostics(rawDiagnostics);\n\n if (diagnostics.length > 0) {\n let warningCount: number = 0;\n let hasError: boolean = false;\n\n this._typescriptTerminal.writeLine(\n `Encountered ${diagnostics.length} TypeScript issue${diagnostics.length > 1 ? 's' : ''}:`\n );\n for (const diagnostic of diagnostics) {\n const diagnosticCategory: TTypescript.DiagnosticCategory = this._getAdjustedDiagnosticCategory(\n diagnostic,\n ts\n );\n\n if (diagnosticCategory === ts.DiagnosticCategory.Warning) {\n warningCount++;\n } else if (diagnosticCategory === ts.DiagnosticCategory.Error) {\n hasError = true;\n }\n\n this._printDiagnosticMessage(ts, diagnostic, diagnosticCategory);\n }\n\n if (isSolutionMode && warningCount > 0 && !hasError) {\n this._typescriptLogger.emitError(\n new Error(\n `TypeScript encountered ${warningCount} warning${warningCount === 1 ? '' : 's'} ` +\n `and is configured to build project references. As a result, no files were emitted. Please fix the reported warnings to proceed.`\n )\n );\n }\n }\n }\n\n private _logEmitPerformance(ts: ExtendedTypeScript): void {\n this._typescriptTerminal.writeVerboseLine(`Bind: ${ts.performance.getDuration('Bind')}ms`);\n this._typescriptTerminal.writeVerboseLine(`Check: ${ts.performance.getDuration('Check')}ms`);\n this._typescriptTerminal.writeVerboseLine(\n `Transform: ${ts.performance.getDuration('transformTime')}ms ` +\n `(${ts.performance.getCount('beforeTransform')} files)`\n );\n this._typescriptTerminal.writeVerboseLine(\n `Print: ${ts.performance.getDuration('printTime')}ms ` +\n `(${ts.performance.getCount('beforePrint')} files) (Includes Transform)`\n );\n this._typescriptTerminal.writeVerboseLine(\n `Emit: ${ts.performance.getDuration('Emit')}ms (Includes Print)`\n );\n this._typescriptTerminal.writeVerboseLine(\n `I/O Write: ${ts.performance.getDuration('I/O Write')}ms (${ts.performance.getCount(\n 'beforeIOWrite'\n )} files)`\n );\n }\n\n private _logReadPerformance(ts: ExtendedTypeScript): void {\n this._typescriptTerminal.writeVerboseLine(\n `I/O Read: ${ts.performance.getDuration('I/O Read')}ms (${ts.performance.getCount(\n 'beforeIORead'\n )} files)`\n );\n this._typescriptTerminal.writeVerboseLine(\n `Parse: ${ts.performance.getDuration('Parse')}ms (${ts.performance.getCount('beforeParse')} files)`\n );\n this._typescriptTerminal.writeVerboseLine(\n `Program (includes Read + Parse): ${ts.performance.getDuration('Program')}ms`\n );\n }\n\n private _printDiagnosticMessage(\n ts: ExtendedTypeScript,\n diagnostic: TTypescript.Diagnostic,\n diagnosticCategory: TTypescript.DiagnosticCategory = this._getAdjustedDiagnosticCategory(diagnostic, ts)\n ): void {\n // Code taken from reference example\n let diagnosticMessage: string;\n let errorObject: Error;\n if (diagnostic.file) {\n const { line, character } = diagnostic.file.getLineAndCharacterOfPosition(diagnostic.start!);\n const message: string = ts.flattenDiagnosticMessageText(diagnostic.messageText, '\\n');\n const formattedMessage: string = `(TS${diagnostic.code}) ${message}`;\n errorObject = new FileError(formattedMessage, {\n absolutePath: diagnostic.file.fileName,\n projectFolder: this._configuration.buildFolderPath,\n line: line + 1,\n column: character + 1\n });\n diagnosticMessage = errorObject.toString();\n } else {\n diagnosticMessage = ts.flattenDiagnosticMessageText(diagnostic.messageText, '\\n');\n errorObject = new Error(diagnosticMessage);\n }\n\n switch (diagnosticCategory) {\n case ts.DiagnosticCategory.Error: {\n this._typescriptLogger.emitError(errorObject);\n break;\n }\n\n case ts.DiagnosticCategory.Warning: {\n this._typescriptLogger.emitWarning(errorObject);\n break;\n }\n\n default: {\n this._typescriptTerminal.writeLine(...diagnosticMessage);\n break;\n }\n }\n }\n\n private _getAdjustedDiagnosticCategory(\n diagnostic: TTypescript.Diagnostic,\n ts: ExtendedTypeScript\n ): TTypescript.DiagnosticCategory {\n // Workaround for https://github.com/microsoft/TypeScript/issues/40058\n // The compiler reports a hard error for issues such as this:\n //\n // error TS6133: 'x' is declared but its value is never read.\n //\n // These should properly be treated as warnings, because they are purely cosmetic issues.\n // TODO: Maybe heft should provide a config file for managing DiagnosticCategory mappings.\n if (diagnostic.reportsUnnecessary && diagnostic.category === ts.DiagnosticCategory.Error) {\n return ts.DiagnosticCategory.Warning;\n }\n\n // These pedantic checks also should not be treated as hard errors\n if (this._suppressedDiagnosticCodes.has(diagnostic.code)) {\n return ts.DiagnosticCategory.Warning;\n }\n\n return diagnostic.category;\n }\n\n private _validateTsconfig(ts: ExtendedTypeScript, tsconfig: TTypescript.ParsedCommandLine): void {\n if (\n (tsconfig.options.module && !tsconfig.options.outDir) ||\n (!tsconfig.options.module && tsconfig.options.outDir)\n ) {\n throw new Error(\n 'If either the module or the outDir option is provided in the tsconfig compilerOptions, both must be provided'\n );\n }\n\n this._moduleKindsToEmit = [];\n const specifiedKinds: Map<TTypescript.ModuleKind, IModuleKindReason> = new Map();\n const specifiedOutDirs: Map<string, IModuleKindReason> = new Map();\n\n if (!tsconfig.options.module) {\n throw new Error(\n 'If the module tsconfig compilerOption is not provided, the builder must be provided with the ' +\n 'additionalModuleKindsToEmit configuration option.'\n );\n }\n\n if (this._configuration.emitCjsExtensionForCommonJS) {\n this._addModuleKindToEmit(\n ts.ModuleKind.CommonJS,\n tsconfig.options.outDir!,\n /* isPrimary */ tsconfig.options.module === ts.ModuleKind.CommonJS,\n '.cjs'\n );\n\n const cjsReason: IModuleKindReason = {\n outDir: tsconfig.options.outDir!,\n kind: 'CommonJS',\n extension: '.cjs',\n reason: 'emitCjsExtensionForCommonJS'\n };\n\n specifiedKinds.set(ts.ModuleKind.CommonJS, cjsReason);\n specifiedOutDirs.set(`${tsconfig.options.outDir!}:.cjs`, cjsReason);\n }\n\n if (this._configuration.emitMjsExtensionForESModule) {\n this._addModuleKindToEmit(\n ts.ModuleKind.ESNext,\n tsconfig.options.outDir!,\n /* isPrimary */ tsconfig.options.module === ts.ModuleKind.ESNext,\n '.mjs'\n );\n\n const mjsReason: IModuleKindReason = {\n outDir: tsconfig.options.outDir!,\n kind: 'ESNext',\n extension: '.mjs',\n reason: 'emitMjsExtensionForESModule'\n };\n\n specifiedKinds.set(ts.ModuleKind.ESNext, mjsReason);\n specifiedOutDirs.set(`${tsconfig.options.outDir!}:.mjs`, mjsReason);\n }\n\n if (!specifiedKinds.has(tsconfig.options.module)) {\n this._addModuleKindToEmit(\n tsconfig.options.module,\n tsconfig.options.outDir!,\n /* isPrimary */ true,\n /* jsExtensionOverride */ undefined\n );\n\n const tsConfigReason: IModuleKindReason = {\n outDir: tsconfig.options.outDir!,\n kind: ts.ModuleKind[tsconfig.options.module] as keyof typeof TTypescript.ModuleKind,\n extension: '.js',\n reason: 'tsconfig.json'\n };\n\n specifiedKinds.set(tsconfig.options.module, tsConfigReason);\n specifiedOutDirs.set(`${tsconfig.options.outDir!}:.js`, tsConfigReason);\n }\n\n if (this._configuration.additionalModuleKindsToEmit) {\n for (const additionalModuleKindToEmit of this._configuration.additionalModuleKindsToEmit) {\n const moduleKind: TTypescript.ModuleKind = this._parseModuleKind(\n ts,\n additionalModuleKindToEmit.moduleKind\n );\n\n const outDirKey: string = `${additionalModuleKindToEmit.outFolderName}:.js`;\n const moduleKindReason: IModuleKindReason = {\n kind: ts.ModuleKind[moduleKind] as keyof typeof TTypescript.ModuleKind,\n outDir: additionalModuleKindToEmit.outFolderName,\n extension: '.js',\n reason: `additionalModuleKindsToEmit`\n };\n\n const existingKind: IModuleKindReason | undefined = specifiedKinds.get(moduleKind);\n const existingDir: IModuleKindReason | undefined = specifiedOutDirs.get(outDirKey);\n\n if (existingKind) {\n throw new Error(\n `Module kind \"${additionalModuleKindToEmit.moduleKind}\" is already emitted at ${existingKind.outDir} with extension '${existingKind.extension}' by option ${existingKind.reason}.`\n );\n } else if (existingDir) {\n throw new Error(\n `Output folder \"${additionalModuleKindToEmit.outFolderName}\" already contains module kind ${existingDir.kind} with extension '${existingDir.extension}', specified by option ${existingDir.reason}.`\n );\n } else {\n const outFolderKey: string | undefined = this._addModuleKindToEmit(\n moduleKind,\n additionalModuleKindToEmit.outFolderName,\n /* isPrimary */ false,\n undefined\n );\n\n if (outFolderKey) {\n specifiedKinds.set(moduleKind, moduleKindReason);\n specifiedOutDirs.set(outFolderKey, moduleKindReason);\n }\n }\n }\n }\n }\n\n private _addModuleKindToEmit(\n moduleKind: TTypescript.ModuleKind,\n outFolderPath: string,\n isPrimary: boolean,\n jsExtensionOverride: string | undefined\n ): string | undefined {\n let outFolderName: string;\n if (path.isAbsolute(outFolderPath)) {\n outFolderName = path.relative(this._configuration.buildFolderPath, outFolderPath);\n } else {\n outFolderName = outFolderPath;\n outFolderPath = path.resolve(this._configuration.buildFolderPath, outFolderPath);\n }\n\n outFolderPath = Path.convertToSlashes(outFolderPath);\n outFolderPath = outFolderPath.replace(/\\/*$/, '/'); // Ensure the outFolderPath ends with a slash\n\n for (const existingModuleKindToEmit of this._moduleKindsToEmit) {\n let errorText: string | undefined;\n\n if (existingModuleKindToEmit.outFolderPath === outFolderPath) {\n if (existingModuleKindToEmit.jsExtensionOverride === jsExtensionOverride) {\n errorText =\n 'Unable to output two different module kinds with the same ' +\n `module extension (${jsExtensionOverride || '.js'}) to the same ` +\n `folder (\"${outFolderPath}\").`;\n }\n } else {\n let parentFolder: string | undefined;\n let childFolder: string | undefined;\n if (outFolderPath.startsWith(existingModuleKindToEmit.outFolderPath)) {\n parentFolder = outFolderPath;\n childFolder = existingModuleKindToEmit.outFolderPath;\n } else if (existingModuleKindToEmit.outFolderPath.startsWith(outFolderPath)) {\n parentFolder = existingModuleKindToEmit.outFolderPath;\n childFolder = outFolderPath;\n }\n\n if (parentFolder) {\n errorText =\n 'Unable to output two different module kinds to nested folders ' +\n `(\"${parentFolder}\" and \"${childFolder}\").`;\n }\n }\n\n if (errorText) {\n this._typescriptLogger.emitError(new Error(errorText));\n return undefined;\n }\n }\n\n this._moduleKindsToEmit.push({\n outFolderPath,\n moduleKind,\n jsExtensionOverride,\n\n isPrimary\n });\n\n return `${outFolderName}:${jsExtensionOverride || '.js'}`;\n }\n\n private _loadTsconfig(ts: ExtendedTypeScript): TTypescript.ParsedCommandLine {\n const parsedConfigFile: ReturnType<typeof ts.readConfigFile> = ts.readConfigFile(\n this._configuration.tsconfigPath,\n ts.sys.readFile\n );\n\n const currentFolder: string = path.dirname(this._configuration.tsconfigPath);\n const tsconfig: TTypescript.ParsedCommandLine = ts.parseJsonConfigFileContent(\n parsedConfigFile.config,\n {\n fileExists: ts.sys.fileExists,\n readFile: ts.sys.readFile,\n readDirectory: ts.sys.readDirectory,\n useCaseSensitiveFileNames: true\n },\n currentFolder,\n /*existingOptions:*/ undefined,\n this._configuration.tsconfigPath\n );\n\n if (tsconfig.options.incremental) {\n tsconfig.options.tsBuildInfoFile = this._tsCacheFilePath;\n }\n\n return tsconfig;\n }\n\n private _getCreateBuilderProgram(\n ts: ExtendedTypeScript\n ): TTypescript.CreateProgram<TTypescript.EmitAndSemanticDiagnosticsBuilderProgram> {\n const {\n _configuration: { emitChangedFilesCallback }\n } = this;\n\n const createMultiEmitBuilderProgram: TTypescript.CreateProgram<\n TTypescript.EmitAndSemanticDiagnosticsBuilderProgram\n > = (\n fileNames: readonly string[] | undefined,\n compilerOptions: TTypescript.CompilerOptions | undefined,\n host: TTypescript.CompilerHost | undefined,\n oldProgram: TTypescript.EmitAndSemanticDiagnosticsBuilderProgram | undefined,\n configFileParsingDiagnostics: readonly TTypescript.Diagnostic[] | undefined,\n projectReferences: readonly TTypescript.ProjectReference[] | undefined\n ): TTypescript.EmitAndSemanticDiagnosticsBuilderProgram => {\n // Reset performance counters\n ts.performance.disable();\n ts.performance.enable();\n\n this._typescriptTerminal.writeVerboseLine(`Reading program \"${compilerOptions!.configFilePath}\"`);\n\n const newProgram: TTypescript.EmitAndSemanticDiagnosticsBuilderProgram =\n ts.createEmitAndSemanticDiagnosticsBuilderProgram(\n fileNames,\n compilerOptions,\n host,\n oldProgram,\n configFileParsingDiagnostics,\n projectReferences\n );\n\n this._logReadPerformance(ts);\n\n const isolatedModules: boolean =\n !!this._configuration.useTranspilerWorker && !!compilerOptions!.isolatedModules;\n const mode: 'both' | 'declaration' = isolatedModules ? 'declaration' : 'both';\n\n if (isolatedModules) {\n // Kick the transpilation worker.\n const filesToTranspile: Map<string, string> = getFilesToTranspileFromBuilderProgram(newProgram);\n this._queueTranspileInWorker(this._tool!, compilerOptions!, filesToTranspile);\n }\n\n const { emit: originalEmit } = newProgram;\n\n const emit: TTypescript.Program['emit'] = (\n outerTargetSourceFile?: TTypescript.SourceFile,\n outerWriteFile?: TTypescript.WriteFileCallback,\n outerCancellationToken?: TTypescript.CancellationToken,\n outerEmitOnlyDtsFiles?: boolean,\n outerCustomTransformers?: TTypescript.CustomTransformers\n ) => {\n const innerProgram: TTypescript.Program = newProgram.getProgram();\n\n const innerCompilerOptions: TTypescript.CompilerOptions = innerProgram.getCompilerOptions();\n\n const { changedFiles } = configureProgramForMultiEmit(\n innerProgram,\n ts,\n this._moduleKindsToEmit,\n mode\n );\n\n const result: TTypescript.EmitResult = originalEmit.call(\n newProgram,\n outerTargetSourceFile,\n outerWriteFile,\n outerCancellationToken,\n outerEmitOnlyDtsFiles,\n outerCustomTransformers\n );\n\n (result as IExtendedEmitResult).changedSourceFiles = changedFiles;\n\n this._typescriptTerminal.writeVerboseLine(\n `Emitting program \"${innerCompilerOptions!.configFilePath}\"`\n );\n\n this._logEmitPerformance(ts);\n\n // Reset performance counters\n ts.performance.disable();\n ts.performance.enable();\n\n emitChangedFilesCallback(innerProgram, changedFiles);\n\n return result;\n };\n\n newProgram.emit = emit;\n\n return newProgram;\n };\n\n return createMultiEmitBuilderProgram;\n }\n\n private _buildSolutionBuilderHost(tool: ITypeScriptTool): TSolutionHost {\n const reportSolutionBuilderStatus: TTypescript.DiagnosticReporter = tool.reportDiagnostic;\n const reportEmitErrorSummary: TTypescript.ReportEmitErrorSummary = (errorCount: number): void => {\n // Do nothing\n };\n\n const { ts } = tool;\n\n const solutionBuilderHost: TTypescript.SolutionBuilderHost<TTypescript.EmitAndSemanticDiagnosticsBuilderProgram> =\n ts.createSolutionBuilderHost(\n ts.sys,\n this._getCreateBuilderProgram(ts),\n tool.reportDiagnostic,\n reportSolutionBuilderStatus,\n reportEmitErrorSummary\n );\n\n solutionBuilderHost.afterProgramEmitAndDiagnostics = (\n program: TTypescript.EmitAndSemanticDiagnosticsBuilderProgram\n ) => {\n // Use the native metric since we aren't overwriting the writer\n this._typescriptTerminal.writeVerboseLine(\n `I/O Write: ${ts.performance.getDuration('I/O Write')}ms (${ts.performance.getCount(\n 'beforeIOWrite'\n )} files)`\n );\n };\n\n return solutionBuilderHost;\n }\n\n private _buildIncrementalCompilerHost(\n tool: ITypeScriptTool,\n tsconfig: TTypescript.ParsedCommandLine\n ): TTypescript.CompilerHost {\n const { ts, system } = tool;\n\n let compilerHost: TTypescript.CompilerHost | undefined;\n\n if (tsconfig.options.incremental) {\n compilerHost = ts.createIncrementalCompilerHost(tsconfig.options, system);\n } else {\n compilerHost = ts.createCompilerHost(tsconfig.options, undefined, system);\n }\n\n this._changeCompilerHostToUseCache(compilerHost, tool);\n\n return compilerHost;\n }\n\n private _buildWatchCompilerHost(\n tool: ITypeScriptTool,\n tsconfig: TTypescript.ParsedCommandLine\n ): TWatchCompilerHost {\n const { ts, system } = tool;\n\n const reportWatchStatus: TTypescript.DiagnosticReporter = (diagnostic: TTypescript.Diagnostic): void => {\n this._printDiagnosticMessage(ts, diagnostic);\n };\n\n const compilerHost: TWatchCompilerHost = ts.createWatchCompilerHost(\n tsconfig.fileNames,\n tsconfig.options,\n system,\n this._getCreateBuilderProgram(ts),\n tool.reportDiagnostic,\n reportWatchStatus,\n tsconfig.projectReferences,\n tsconfig.watchOptions\n );\n\n return compilerHost;\n }\n\n private _changeCompilerHostToUseCache(compilerHost: TTypescript.CompilerHost, tool: ITypeScriptTool): void {\n const { sourceFileCache } = tool;\n\n const { getSourceFile: innerGetSourceFile } = compilerHost;\n if ((innerGetSourceFile as { cache?: typeof sourceFileCache }).cache === sourceFileCache) {\n return;\n }\n\n compilerHost.getCurrentDirectory = () => this._configuration.buildFolderPath;\n\n // Enable source file persistence\n const getSourceFile: typeof innerGetSourceFile & {\n cache?: typeof sourceFileCache;\n } = (\n fileName: string,\n languageVersionOrOptions: TTypescript.ScriptTarget | TTypescript.CreateSourceFileOptions,\n onError?: ((message: string) => void) | undefined,\n shouldCreateNewSourceFile?: boolean | undefined\n ): TTypescript.SourceFile | undefined => {\n if (!shouldCreateNewSourceFile) {\n const cachedSourceFile: TTypescript.SourceFile | undefined = sourceFileCache.get(fileName);\n if (cachedSourceFile) {\n return cachedSourceFile;\n }\n }\n\n const result: TTypescript.SourceFile | undefined = innerGetSourceFile(\n fileName,\n languageVersionOrOptions,\n onError,\n shouldCreateNewSourceFile\n );\n if (result) {\n sourceFileCache.set(fileName, result);\n } else {\n sourceFileCache.delete(fileName);\n }\n return result;\n };\n\n getSourceFile.cache = sourceFileCache;\n\n compilerHost.getSourceFile = getSourceFile;\n }\n\n private _buildWatchSolutionBuilderHost(tool: ITypeScriptTool): TWatchSolutionHost {\n const { reportDiagnostic, ts, system } = tool;\n\n const host: TWatchSolutionHost = ts.createSolutionBuilderWithWatchHost(\n system,\n this._getCreateBuilderProgram(ts),\n reportDiagnostic,\n reportDiagnostic,\n reportDiagnostic\n );\n\n return host;\n }\n\n private _parseModuleKind(ts: ExtendedTypeScript, moduleKindName: string): TTypescript.ModuleKind {\n switch (moduleKindName.toLowerCase()) {\n case 'commonjs':\n return ts.ModuleKind.CommonJS;\n\n case 'amd':\n return ts.ModuleKind.AMD;\n\n case 'umd':\n return ts.ModuleKind.UMD;\n\n case 'system':\n return ts.ModuleKind.System;\n\n case 'es2015':\n return ts.ModuleKind.ES2015;\n\n case 'esnext':\n return ts.ModuleKind.ESNext;\n\n default:\n throw new Error(`\"${moduleKindName}\" is not a valid module kind name.`);\n }\n }\n\n private _queueTranspileInWorker(\n tool: ITypeScriptTool,\n compilerOptions: TTypescript.CompilerOptions,\n filesToTranspile: Map<string, string>\n ): void {\n const { pendingTranspilePromises, pendingTranspileSignals } = tool;\n let maybeWorker: Worker | undefined = tool.worker;\n if (!maybeWorker) {\n const workerData: ITypescriptWorkerData = {\n typeScriptToolPath: this._configuration.typeScriptToolPath\n };\n tool.worker = maybeWorker = new Worker(require.resolve('./TranspilerWorker.js'), {\n workerData: workerData\n });\n\n maybeWorker.on('message', (response: ITranspilationResponseMessage) => {\n const { requestId: resolvingRequestId, type, result } = response;\n const signal: ITranspileSignal | undefined = pendingTranspileSignals.get(resolvingRequestId);\n\n if (type === 'error') {\n const error: Error = Object.assign(new Error(result.message), result);\n if (signal) {\n signal.reject(error);\n } else {\n this._typescriptTerminal.writeErrorLine(\n `Unexpected worker rejection for request with id ${resolvingRequestId}: ${error}`\n );\n }\n } else if (signal) {\n signal.resolve(result);\n } else {\n this._typescriptTerminal.writeErrorLine(\n `Unexpected worker resolution for request with id ${resolvingRequestId}`\n );\n }\n\n pendingTranspileSignals.delete(resolvingRequestId);\n pendingTranspilePromises.delete(resolvingRequestId);\n });\n\n maybeWorker.once('exit', (exitCode: number) => {\n if (pendingTranspileSignals.size) {\n const error: Error = new Error(`Worker exited unexpectedly with code ${exitCode}.`);\n for (const { reject: rejectTranspile } of pendingTranspileSignals.values()) {\n rejectTranspile(error);\n }\n pendingTranspileSignals.clear();\n }\n });\n\n maybeWorker.once('error', (err: Error) => {\n for (const { reject: rejectTranspile } of pendingTranspileSignals.values()) {\n rejectTranspile(err);\n }\n pendingTranspileSignals.clear();\n });\n }\n\n // make linter happy\n const worker: Worker = maybeWorker;\n\n const requestId: number = ++this._nextRequestId;\n const transpilePromise: Promise<TTypescript.EmitResult> = new Promise(\n (resolve: (result: TTypescript.EmitResult) => void, reject: (err: Error) => void) => {\n pendingTranspileSignals.set(requestId, { resolve, reject });\n\n this._typescriptTerminal.writeLine(`Asynchronously transpiling ${compilerOptions.configFilePath}`);\n const request: ITranspilationRequestMessage = {\n compilerOptions,\n filesToTranspile,\n moduleKindsToEmit: this._moduleKindsToEmit,\n requestId\n };\n\n worker.postMessage(request);\n }\n );\n\n pendingTranspilePromises.set(requestId, transpilePromise);\n }\n\n private _cleanupWorker(): void {\n const tool: ITypeScriptTool | undefined = this._tool;\n if (!tool) {\n return;\n }\n\n const { worker } = tool;\n if (worker) {\n worker.postMessage(false);\n tool.worker = undefined;\n }\n }\n}\n\nfunction getFilesToTranspileFromBuilderProgram(\n builderProgram: TTypescript.BuilderProgram\n): Map<string, string> {\n const program: ExtendedBuilderProgram = builderProgram as unknown as ExtendedBuilderProgram;\n // getState was removed in Typescript 5.6, replaced with state\n const changedFilesSet: Set<string> = (program.state ?? program.getState()).changedFilesSet;\n\n const filesToTranspile: Map<string, string> = new Map();\n for (const fileName of changedFilesSet) {\n const sourceFile: TTypescript.SourceFile | undefined = builderProgram.getSourceFile(fileName);\n if (sourceFile && !sourceFile.isDeclarationFile) {\n filesToTranspile.set(sourceFile.fileName, sourceFile.text);\n }\n }\n return filesToTranspile;\n}\n\nfunction getFilesToTranspileFromProgram(program: TTypescript.Program): Map<string, string> {\n const filesToTranspile: Map<string, string> = new Map();\n for (const sourceFile of program.getSourceFiles()) {\n if (!sourceFile.isDeclarationFile) {\n filesToTranspile.set(sourceFile.fileName, sourceFile.text);\n }\n }\n return filesToTranspile;\n}\n"]}
|
|
1
|
+
{"version":3,"file":"TypeScriptBuilder.js","sourceRoot":"","sources":["../src/TypeScriptBuilder.ts"],"names":[],"mappings":"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","sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.\n// See LICENSE in the project root for license information.\n\nimport * as crypto from 'crypto';\nimport * as path from 'path';\nimport { Worker } from 'worker_threads';\n\nimport * as semver from 'semver';\nimport type * as TTypescript from 'typescript';\nimport {\n JsonFile,\n type IPackageJson,\n Path,\n FileError,\n RealNodeModulePathResolver\n} from '@rushstack/node-core-library';\nimport type { ITerminal } from '@rushstack/terminal';\nimport type { IScopedLogger } from '@rushstack/heft';\n\nimport type {\n ExtendedBuilderProgram,\n ExtendedTypeScript,\n IExtendedSolutionBuilder,\n ITypeScriptNodeSystem\n} from './internalTypings/TypeScriptInternals';\nimport type { ITypeScriptConfigurationJson } from './TypeScriptPlugin';\nimport type { PerformanceMeasurer } from './Performance';\nimport type {\n ICachedEmitModuleKind,\n ITranspilationRequestMessage,\n ITranspilationResponseMessage,\n ITypescriptWorkerData\n} from './types';\nimport { configureProgramForMultiEmit } from './configureProgramForMultiEmit';\n\nexport interface ITypeScriptBuilderConfiguration extends ITypeScriptConfigurationJson {\n /**\n * The root folder of the build.\n */\n buildFolderPath: string;\n\n /**\n * The folder to write build metadata.\n */\n buildMetadataFolderPath: string;\n\n /**\n * The path to the TypeScript tool.\n */\n typeScriptToolPath: string;\n\n // watchMode: boolean;\n\n /**\n * The path to the tsconfig file being built.\n */\n tsconfigPath: string;\n\n /**\n * The scoped logger that the builder will log to.\n */\n scopedLogger: IScopedLogger;\n\n /**\n * The callback used to emit the typescript program (or programs) from the builder.\n */\n emitChangedFilesCallback: (\n program: TTypescript.Program,\n changedFiles?: Set<TTypescript.SourceFile>\n ) => void;\n}\n\ntype TSolutionHost = TTypescript.SolutionBuilderHost<TTypescript.EmitAndSemanticDiagnosticsBuilderProgram>;\ntype TWatchCompilerHost =\n TTypescript.WatchCompilerHostOfFilesAndCompilerOptions<TTypescript.EmitAndSemanticDiagnosticsBuilderProgram>;\ntype TWatchSolutionHost =\n TTypescript.SolutionBuilderWithWatchHost<TTypescript.EmitAndSemanticDiagnosticsBuilderProgram>;\ntype TWatchProgram =\n TTypescript.WatchOfFilesAndCompilerOptions<TTypescript.EmitAndSemanticDiagnosticsBuilderProgram>;\n\ninterface ICompilerCapabilities {\n /**\n * Support for incremental compilation via `ts.createIncrementalProgram()`.\n * Introduced with TypeScript 3.6.\n */\n incrementalProgram: boolean;\n\n /**\n * Support for composite projects via `ts.createSolutionBuilder()`.\n * Introduced with TypeScript 3.0.\n */\n solutionBuilder: boolean;\n}\n\ninterface IFileToWrite {\n filePath: string;\n data: string;\n}\n\ninterface IModuleKindReason {\n kind: keyof typeof TTypescript.ModuleKind;\n outDir: string;\n extension: '.js' | '.cjs' | '.mjs';\n reason: string;\n}\n\ninterface IExtendedEmitResult extends TTypescript.EmitResult {\n changedSourceFiles: Set<TTypescript.SourceFile>;\n filesToWrite: IFileToWrite[];\n}\n\ninterface IPendingWork {\n (): void;\n}\n\ninterface ITranspileSignal {\n resolve: (result: TTypescript.EmitResult) => void;\n reject: (error: Error) => void;\n}\n\nconst OLDEST_SUPPORTED_TS_MAJOR_VERSION: number = 2;\nconst OLDEST_SUPPORTED_TS_MINOR_VERSION: number = 9;\n\nconst NEWEST_SUPPORTED_TS_MAJOR_VERSION: number = 5;\nconst NEWEST_SUPPORTED_TS_MINOR_VERSION: number = 6;\n\ninterface ITypeScriptTool {\n ts: ExtendedTypeScript;\n system: TTypescript.System;\n measureSync: PerformanceMeasurer;\n\n sourceFileCache: Map<string, TTypescript.SourceFile>;\n\n watchProgram: TWatchProgram | undefined;\n\n solutionBuilder: IExtendedSolutionBuilder | undefined;\n\n rawDiagnostics: TTypescript.Diagnostic[];\n pendingOperations: Set<IPendingWork>;\n\n executing: boolean;\n\n worker: Worker | undefined;\n pendingTranspilePromises: Map<number, Promise<TTypescript.EmitResult>>;\n pendingTranspileSignals: Map<number, ITranspileSignal>;\n\n reportDiagnostic: TTypescript.DiagnosticReporter;\n}\n\nexport class TypeScriptBuilder {\n private readonly _configuration: ITypeScriptBuilderConfiguration;\n private readonly _typescriptLogger: IScopedLogger;\n private readonly _typescriptTerminal: ITerminal;\n\n private _typescriptVersion!: string;\n private _typescriptParsedVersion!: semver.SemVer;\n\n private _capabilities!: ICompilerCapabilities;\n private _useSolutionBuilder!: boolean;\n\n private _moduleKindsToEmit!: ICachedEmitModuleKind[];\n private readonly _suppressedDiagnosticCodes: Set<number> = new Set();\n\n private __tsCacheFilePath: string | undefined;\n\n private _tool: ITypeScriptTool | undefined = undefined;\n\n private _nextRequestId: number = 0;\n\n private get _tsCacheFilePath(): string {\n if (!this.__tsCacheFilePath) {\n // TypeScript internally handles if the tsconfig options have changed from when the tsbuildinfo file was created.\n // We only need to hash our additional Heft configuration.\n const configHash: crypto.Hash = crypto.createHash('sha1');\n\n configHash.update(JSON.stringify(this._configuration.additionalModuleKindsToEmit || {}));\n const serializedConfigHash: string = configHash\n .digest('base64')\n .slice(0, 8)\n .replace(/\\+/g, '-')\n .replace(/\\//g, '_');\n\n // This conversion is theoretically redundant, but it is here to make absolutely sure that the path is formatted\n // using only '/' as the directory separator so that incremental builds don't break on Windows.\n // TypeScript will normalize to '/' when serializing, but not on the direct input, and uses exact string equality.\n const normalizedCacheFolderPath: string = Path.convertToSlashes(\n this._configuration.buildMetadataFolderPath\n );\n this.__tsCacheFilePath = `${normalizedCacheFolderPath}/ts_${serializedConfigHash}.json`;\n }\n\n return this.__tsCacheFilePath;\n }\n\n public constructor(configuration: ITypeScriptBuilderConfiguration) {\n this._configuration = configuration;\n this._typescriptLogger = configuration.scopedLogger;\n this._typescriptTerminal = configuration.scopedLogger.terminal;\n }\n\n public async invokeAsync(onChangeDetected?: () => void): Promise<void> {\n if (!this._tool) {\n // Determine the compiler version\n const compilerPackageJsonFilename: string = path.join(\n this._configuration.typeScriptToolPath,\n 'package.json'\n );\n const packageJson: IPackageJson = await JsonFile.loadAsync(compilerPackageJsonFilename);\n this._typescriptVersion = packageJson.version;\n const parsedVersion: semver.SemVer | null = semver.parse(this._typescriptVersion);\n if (!parsedVersion) {\n throw new Error(\n `Unable to parse version \"${this._typescriptVersion}\" for TypeScript compiler package in: ` +\n compilerPackageJsonFilename\n );\n }\n this._typescriptParsedVersion = parsedVersion;\n\n // Detect what features this compiler supports. Note that manually comparing major/minor numbers\n // loosens the matching to accept prereleases such as \"3.6.0-dev.20190530\"\n this._capabilities = {\n incrementalProgram: false,\n solutionBuilder: this._typescriptParsedVersion.major >= 3\n };\n\n if (\n this._typescriptParsedVersion.major > 3 ||\n (this._typescriptParsedVersion.major === 3 && this._typescriptParsedVersion.minor >= 6)\n ) {\n this._capabilities.incrementalProgram = true;\n }\n\n this._useSolutionBuilder = !!this._configuration.buildProjectReferences;\n if (this._useSolutionBuilder && !this._capabilities.solutionBuilder) {\n throw new Error(\n `Building project references requires TypeScript@>=3.0, but the current version is ${this._typescriptVersion}`\n );\n }\n\n // Report a warning if the TypeScript version is too old/new. The current oldest supported version is\n // TypeScript 2.9. Prior to that the \"ts.getConfigFileParsingDiagnostics()\" API is missing; more fixups\n // would be required to deal with that. We won't do that work unless someone requests it.\n if (\n this._typescriptParsedVersion.major < OLDEST_SUPPORTED_TS_MAJOR_VERSION ||\n (this._typescriptParsedVersion.major === OLDEST_SUPPORTED_TS_MAJOR_VERSION &&\n this._typescriptParsedVersion.minor < OLDEST_SUPPORTED_TS_MINOR_VERSION)\n ) {\n // We don't use writeWarningLine() here because, if the person wants to take their chances with\n // a seemingly unsupported compiler, their build should be allowed to succeed.\n this._typescriptTerminal.writeLine(\n `The TypeScript compiler version ${this._typescriptVersion} is very old` +\n ` and has not been tested with Heft; it may not work correctly.`\n );\n } else if (\n this._typescriptParsedVersion.major > NEWEST_SUPPORTED_TS_MAJOR_VERSION ||\n (this._typescriptParsedVersion.major === NEWEST_SUPPORTED_TS_MAJOR_VERSION &&\n this._typescriptParsedVersion.minor > NEWEST_SUPPORTED_TS_MINOR_VERSION)\n ) {\n this._typescriptTerminal.writeLine(\n `The TypeScript compiler version ${this._typescriptVersion} is newer` +\n ' than the latest version that was tested with Heft ' +\n `(${NEWEST_SUPPORTED_TS_MAJOR_VERSION}.${NEWEST_SUPPORTED_TS_MINOR_VERSION}); it may not work correctly.`\n );\n }\n\n const ts: ExtendedTypeScript = require(this._configuration.typeScriptToolPath);\n\n ts.performance.enable();\n\n const suppressedCodes: (number | undefined)[] = [\n ts.Diagnostics.Property_0_has_no_initializer_and_is_not_definitely_assigned_in_the_constructor?.code,\n // This diagnostic code is not present in old versions of TypeScript\n ts.Diagnostics\n .Element_implicitly_has_an_any_type_because_expression_of_type_0_can_t_be_used_to_index_type_1?.code\n ];\n for (const code of suppressedCodes) {\n if (code !== undefined) {\n this._suppressedDiagnosticCodes.add(code);\n }\n }\n\n const measureTsPerformance: PerformanceMeasurer = <TResult extends object | void>(\n measurementName: string,\n fn: () => TResult\n ) => {\n const beforeName: string = `before${measurementName}`;\n ts.performance.mark(beforeName);\n const result: TResult = fn();\n const afterName: string = `after${measurementName}`;\n ts.performance.mark(afterName);\n ts.performance.measure(measurementName, beforeName, afterName);\n return {\n ...result,\n duration: ts.performance.getDuration(measurementName),\n count: ts.performance.getCount(beforeName)\n };\n };\n\n this._typescriptTerminal.writeLine(`Using TypeScript version ${ts.version}`);\n\n const rawDiagnostics: TTypescript.Diagnostic[] = [];\n\n const pendingOperations: Set<IPendingWork> = new Set();\n\n const clearTimeout = (timeout: IPendingWork): void => {\n pendingOperations.delete(timeout);\n };\n\n const setTimeout = <T extends unknown[]>(\n fn: (...args: T) => void,\n ms: number,\n ...args: T\n ): IPendingWork => {\n const timeout: IPendingWork = () => {\n fn(...args);\n };\n pendingOperations.add(timeout);\n if (!this._tool?.executing && onChangeDetected) {\n onChangeDetected();\n }\n return timeout;\n };\n\n let realpath: typeof ts.sys.realpath = ts.sys.realpath;\n if (this._configuration.onlyResolveSymlinksInNodeModules) {\n const resolver: RealNodeModulePathResolver = new RealNodeModulePathResolver();\n realpath = resolver.realNodeModulePath;\n }\n\n const getCurrentDirectory: () => string = () => this._configuration.buildFolderPath;\n\n // Need to also update watchFile and watchDirectory\n const system: ITypeScriptNodeSystem = {\n ...ts.sys,\n realpath,\n getCurrentDirectory,\n clearTimeout,\n setTimeout\n };\n\n if (realpath && system.getAccessibleFileSystemEntries) {\n const { getAccessibleFileSystemEntries } = system;\n system.readDirectory = (folderPath, extensions, exclude, include, depth): string[] => {\n return ts.matchFiles(\n folderPath,\n extensions,\n exclude,\n include,\n ts.sys.useCaseSensitiveFileNames,\n getCurrentDirectory(),\n depth,\n getAccessibleFileSystemEntries,\n realpath,\n ts.sys.directoryExists\n );\n };\n }\n\n this._tool = {\n ts,\n system,\n\n measureSync: measureTsPerformance,\n\n sourceFileCache: new Map(),\n\n watchProgram: undefined,\n solutionBuilder: undefined,\n\n rawDiagnostics,\n\n pendingOperations,\n\n executing: false,\n\n reportDiagnostic: (diagnostic: TTypescript.Diagnostic) => {\n rawDiagnostics.push(diagnostic);\n },\n\n worker: undefined,\n\n pendingTranspilePromises: new Map(),\n pendingTranspileSignals: new Map()\n };\n }\n\n const { performance } = this._tool.ts;\n // Reset the performance counters to 0 to avoid contamination from previous runs\n performance.disable();\n performance.enable();\n\n if (onChangeDetected !== undefined) {\n await this._runWatchAsync(this._tool);\n } else if (this._useSolutionBuilder) {\n await this._runSolutionBuildAsync(this._tool);\n } else {\n await this._runBuildAsync(this._tool);\n }\n }\n\n public async _runWatchAsync(tool: ITypeScriptTool): Promise<void> {\n const {\n ts,\n measureSync: measureTsPerformance,\n pendingOperations,\n rawDiagnostics,\n pendingTranspilePromises\n } = tool;\n\n if (!tool.solutionBuilder && !tool.watchProgram) {\n //#region CONFIGURE\n const { duration: configureDurationMs, tsconfig } = measureTsPerformance('Configure', () => {\n const _tsconfig: TTypescript.ParsedCommandLine = this._loadTsconfig(tool);\n this._validateTsconfig(ts, _tsconfig);\n\n return {\n tsconfig: _tsconfig\n };\n });\n this._typescriptTerminal.writeVerboseLine(`Configure: ${configureDurationMs}ms`);\n //#endregion\n\n if (this._useSolutionBuilder) {\n const solutionHost: TWatchSolutionHost = this._buildWatchSolutionBuilderHost(tool);\n const builder: TTypescript.SolutionBuilder<TTypescript.EmitAndSemanticDiagnosticsBuilderProgram> =\n ts.createSolutionBuilderWithWatch(solutionHost, [this._configuration.tsconfigPath], {});\n\n tool.solutionBuilder = builder as IExtendedSolutionBuilder;\n\n builder.build();\n } else {\n const compilerHost: TWatchCompilerHost = this._buildWatchCompilerHost(tool, tsconfig);\n tool.watchProgram = ts.createWatchProgram(compilerHost);\n }\n }\n\n if (pendingOperations.size > 0) {\n rawDiagnostics.length = 0;\n tool.executing = true;\n for (const operation of pendingOperations) {\n pendingOperations.delete(operation);\n operation();\n }\n if (pendingTranspilePromises.size) {\n const emitResults: TTypescript.EmitResult[] = await Promise.all(pendingTranspilePromises.values());\n for (const { diagnostics } of emitResults) {\n for (const diagnostic of diagnostics) {\n rawDiagnostics.push(diagnostic);\n }\n }\n }\n // eslint-disable-next-line require-atomic-updates\n tool.executing = false;\n }\n this._logDiagnostics(ts, rawDiagnostics, this._useSolutionBuilder);\n }\n\n public async _runBuildAsync(tool: ITypeScriptTool): Promise<void> {\n const { ts, measureSync: measureTsPerformance, pendingTranspilePromises } = tool;\n\n //#region CONFIGURE\n const {\n duration: configureDurationMs,\n tsconfig,\n compilerHost\n } = measureTsPerformance('Configure', () => {\n const _tsconfig: TTypescript.ParsedCommandLine = this._loadTsconfig(tool);\n this._validateTsconfig(ts, _tsconfig);\n\n const _compilerHost: TTypescript.CompilerHost = this._buildIncrementalCompilerHost(tool, _tsconfig);\n\n return {\n tsconfig: _tsconfig,\n compilerHost: _compilerHost\n };\n });\n this._typescriptTerminal.writeVerboseLine(`Configure: ${configureDurationMs}ms`);\n //#endregion\n\n //#region PROGRAM\n // There will be only one program here; emit will get a bit abused if we produce multiple outputs\n let builderProgram: TTypescript.BuilderProgram | undefined = undefined;\n let innerProgram: TTypescript.Program;\n\n const isolatedModules: boolean =\n !!this._configuration.useTranspilerWorker && !!tsconfig.options.isolatedModules;\n const mode: 'both' | 'declaration' = isolatedModules ? 'declaration' : 'both';\n\n let filesToTranspile: Map<string, string> | undefined;\n\n if (tsconfig.options.incremental) {\n // Use ts.createEmitAndSemanticDiagnositcsBuilderProgram directly because the customizations performed by\n // _getCreateBuilderProgram duplicate those performed in this function for non-incremental build.\n const oldProgram: TTypescript.EmitAndSemanticDiagnosticsBuilderProgram | undefined =\n ts.readBuilderProgram(tsconfig.options, compilerHost);\n builderProgram = ts.createEmitAndSemanticDiagnosticsBuilderProgram(\n tsconfig.fileNames,\n tsconfig.options,\n compilerHost,\n oldProgram,\n ts.getConfigFileParsingDiagnostics(tsconfig),\n tsconfig.projectReferences\n );\n filesToTranspile = getFilesToTranspileFromBuilderProgram(builderProgram);\n innerProgram = builderProgram.getProgram();\n } else {\n innerProgram = ts.createProgram({\n rootNames: tsconfig.fileNames,\n options: tsconfig.options,\n projectReferences: tsconfig.projectReferences,\n host: compilerHost,\n oldProgram: undefined,\n configFileParsingDiagnostics: ts.getConfigFileParsingDiagnostics(tsconfig)\n });\n filesToTranspile = getFilesToTranspileFromProgram(innerProgram);\n }\n\n // Prefer the builder program, since it is what gives us incremental builds\n const genericProgram: TTypescript.BuilderProgram | TTypescript.Program = builderProgram || innerProgram;\n\n this._logReadPerformance(ts);\n //#endregion\n\n if (isolatedModules) {\n // Kick the transpilation worker.\n this._queueTranspileInWorker(tool, genericProgram.getCompilerOptions(), filesToTranspile);\n }\n\n //#region ANALYSIS\n const { duration: diagnosticsDurationMs, diagnostics: preDiagnostics } = measureTsPerformance(\n 'Analyze',\n () => {\n const rawDiagnostics: TTypescript.Diagnostic[] = [\n ...genericProgram.getConfigFileParsingDiagnostics(),\n ...genericProgram.getOptionsDiagnostics(),\n ...genericProgram.getSyntacticDiagnostics(),\n ...genericProgram.getGlobalDiagnostics(),\n ...genericProgram.getSemanticDiagnostics()\n ];\n return { diagnostics: rawDiagnostics };\n }\n );\n this._typescriptTerminal.writeVerboseLine(`Analyze: ${diagnosticsDurationMs}ms`);\n //#endregion\n\n //#region EMIT\n const { changedFiles } = configureProgramForMultiEmit(innerProgram, ts, this._moduleKindsToEmit, mode);\n\n const emitResult: TTypescript.EmitResult = genericProgram.emit(\n undefined,\n // The writeFile callback must be provided for the multi-emit redirector\n ts.sys.writeFile,\n undefined,\n undefined,\n undefined\n );\n\n this._cleanupWorker();\n //#endregion\n\n this._logEmitPerformance(ts);\n\n //#region FINAL_ANALYSIS\n // Need to ensure that we include emit diagnostics, since they might not be part of the other sets\n const rawDiagnostics: TTypescript.Diagnostic[] = [...preDiagnostics, ...emitResult.diagnostics];\n //#endregion\n\n this._configuration.emitChangedFilesCallback(innerProgram, changedFiles);\n\n if (pendingTranspilePromises.size) {\n const emitResults: TTypescript.EmitResult[] = await Promise.all(pendingTranspilePromises.values());\n for (const { diagnostics } of emitResults) {\n for (const diagnostic of diagnostics) {\n rawDiagnostics.push(diagnostic);\n }\n }\n }\n\n this._logDiagnostics(ts, rawDiagnostics);\n // Reset performance counters in case any are used in the callback\n ts.performance.disable();\n ts.performance.enable();\n }\n\n public async _runSolutionBuildAsync(tool: ITypeScriptTool): Promise<void> {\n this._typescriptTerminal.writeVerboseLine(`Using solution mode`);\n\n const { ts, measureSync, rawDiagnostics, pendingTranspilePromises } = tool;\n rawDiagnostics.length = 0;\n\n if (!tool.solutionBuilder) {\n //#region CONFIGURE\n const { duration: configureDurationMs, solutionBuilderHost } = measureSync('Configure', () => {\n const _tsconfig: TTypescript.ParsedCommandLine = this._loadTsconfig(tool);\n this._validateTsconfig(ts, _tsconfig);\n\n const _solutionBuilderHost: TSolutionHost = this._buildSolutionBuilderHost(tool);\n\n return {\n solutionBuilderHost: _solutionBuilderHost\n };\n });\n this._typescriptTerminal.writeVerboseLine(`Configure: ${configureDurationMs}ms`);\n //#endregion\n\n tool.solutionBuilder = ts.createSolutionBuilder(\n solutionBuilderHost,\n [this._configuration.tsconfigPath],\n {}\n ) as IExtendedSolutionBuilder;\n } else {\n // Force reload everything from disk\n for (const project of tool.solutionBuilder.getBuildOrder()) {\n tool.solutionBuilder.invalidateProject(project, 1);\n }\n }\n\n //#region EMIT\n // Ignoring the exit status because we only care about presence of diagnostics\n tool.solutionBuilder.build();\n this._cleanupWorker();\n //#endregion\n\n if (pendingTranspilePromises.size) {\n const emitResults: TTypescript.EmitResult[] = await Promise.all(pendingTranspilePromises.values());\n for (const { diagnostics } of emitResults) {\n for (const diagnostic of diagnostics) {\n rawDiagnostics.push(diagnostic);\n }\n }\n }\n\n this._logDiagnostics(ts, rawDiagnostics, true);\n }\n\n private _logDiagnostics(\n ts: ExtendedTypeScript,\n rawDiagnostics: TTypescript.Diagnostic[],\n isSolutionMode?: boolean\n ): void {\n const diagnostics: readonly TTypescript.Diagnostic[] = ts.sortAndDeduplicateDiagnostics(rawDiagnostics);\n\n if (diagnostics.length > 0) {\n let warningCount: number = 0;\n let hasError: boolean = false;\n\n this._typescriptTerminal.writeLine(\n `Encountered ${diagnostics.length} TypeScript issue${diagnostics.length > 1 ? 's' : ''}:`\n );\n for (const diagnostic of diagnostics) {\n const diagnosticCategory: TTypescript.DiagnosticCategory = this._getAdjustedDiagnosticCategory(\n diagnostic,\n ts\n );\n\n if (diagnosticCategory === ts.DiagnosticCategory.Warning) {\n warningCount++;\n } else if (diagnosticCategory === ts.DiagnosticCategory.Error) {\n hasError = true;\n }\n\n this._printDiagnosticMessage(ts, diagnostic, diagnosticCategory);\n }\n\n if (isSolutionMode && warningCount > 0 && !hasError) {\n this._typescriptLogger.emitError(\n new Error(\n `TypeScript encountered ${warningCount} warning${warningCount === 1 ? '' : 's'} ` +\n `and is configured to build project references. As a result, no files were emitted. Please fix the reported warnings to proceed.`\n )\n );\n }\n }\n }\n\n private _logEmitPerformance(ts: ExtendedTypeScript): void {\n this._typescriptTerminal.writeVerboseLine(`Bind: ${ts.performance.getDuration('Bind')}ms`);\n this._typescriptTerminal.writeVerboseLine(`Check: ${ts.performance.getDuration('Check')}ms`);\n this._typescriptTerminal.writeVerboseLine(\n `Transform: ${ts.performance.getDuration('transformTime')}ms ` +\n `(${ts.performance.getCount('beforeTransform')} files)`\n );\n this._typescriptTerminal.writeVerboseLine(\n `Print: ${ts.performance.getDuration('printTime')}ms ` +\n `(${ts.performance.getCount('beforePrint')} files) (Includes Transform)`\n );\n this._typescriptTerminal.writeVerboseLine(\n `Emit: ${ts.performance.getDuration('Emit')}ms (Includes Print)`\n );\n this._typescriptTerminal.writeVerboseLine(\n `I/O Write: ${ts.performance.getDuration('I/O Write')}ms (${ts.performance.getCount(\n 'beforeIOWrite'\n )} files)`\n );\n }\n\n private _logReadPerformance(ts: ExtendedTypeScript): void {\n this._typescriptTerminal.writeVerboseLine(\n `I/O Read: ${ts.performance.getDuration('I/O Read')}ms (${ts.performance.getCount(\n 'beforeIORead'\n )} files)`\n );\n this._typescriptTerminal.writeVerboseLine(\n `Parse: ${ts.performance.getDuration('Parse')}ms (${ts.performance.getCount('beforeParse')} files)`\n );\n this._typescriptTerminal.writeVerboseLine(\n `Program (includes Read + Parse): ${ts.performance.getDuration('Program')}ms`\n );\n }\n\n private _printDiagnosticMessage(\n ts: ExtendedTypeScript,\n diagnostic: TTypescript.Diagnostic,\n diagnosticCategory: TTypescript.DiagnosticCategory = this._getAdjustedDiagnosticCategory(diagnostic, ts)\n ): void {\n // Code taken from reference example\n let diagnosticMessage: string;\n let errorObject: Error;\n if (diagnostic.file) {\n const { line, character } = diagnostic.file.getLineAndCharacterOfPosition(diagnostic.start!);\n const message: string = ts.flattenDiagnosticMessageText(diagnostic.messageText, '\\n');\n const formattedMessage: string = `(TS${diagnostic.code}) ${message}`;\n errorObject = new FileError(formattedMessage, {\n absolutePath: diagnostic.file.fileName,\n projectFolder: this._configuration.buildFolderPath,\n line: line + 1,\n column: character + 1\n });\n diagnosticMessage = errorObject.toString();\n } else {\n diagnosticMessage = ts.flattenDiagnosticMessageText(diagnostic.messageText, '\\n');\n errorObject = new Error(diagnosticMessage);\n }\n\n switch (diagnosticCategory) {\n case ts.DiagnosticCategory.Error: {\n this._typescriptLogger.emitError(errorObject);\n break;\n }\n\n case ts.DiagnosticCategory.Warning: {\n this._typescriptLogger.emitWarning(errorObject);\n break;\n }\n\n default: {\n this._typescriptTerminal.writeLine(...diagnosticMessage);\n break;\n }\n }\n }\n\n private _getAdjustedDiagnosticCategory(\n diagnostic: TTypescript.Diagnostic,\n ts: ExtendedTypeScript\n ): TTypescript.DiagnosticCategory {\n // Workaround for https://github.com/microsoft/TypeScript/issues/40058\n // The compiler reports a hard error for issues such as this:\n //\n // error TS6133: 'x' is declared but its value is never read.\n //\n // These should properly be treated as warnings, because they are purely cosmetic issues.\n // TODO: Maybe heft should provide a config file for managing DiagnosticCategory mappings.\n if (diagnostic.reportsUnnecessary && diagnostic.category === ts.DiagnosticCategory.Error) {\n return ts.DiagnosticCategory.Warning;\n }\n\n // These pedantic checks also should not be treated as hard errors\n if (this._suppressedDiagnosticCodes.has(diagnostic.code)) {\n return ts.DiagnosticCategory.Warning;\n }\n\n return diagnostic.category;\n }\n\n private _validateTsconfig(ts: ExtendedTypeScript, tsconfig: TTypescript.ParsedCommandLine): void {\n if (\n (tsconfig.options.module && !tsconfig.options.outDir) ||\n (!tsconfig.options.module && tsconfig.options.outDir)\n ) {\n throw new Error(\n 'If either the module or the outDir option is provided in the tsconfig compilerOptions, both must be provided'\n );\n }\n\n this._moduleKindsToEmit = [];\n const specifiedKinds: Map<TTypescript.ModuleKind, IModuleKindReason> = new Map();\n const specifiedOutDirs: Map<string, IModuleKindReason> = new Map();\n\n if (!tsconfig.options.module) {\n throw new Error(\n 'If the module tsconfig compilerOption is not provided, the builder must be provided with the ' +\n 'additionalModuleKindsToEmit configuration option.'\n );\n }\n\n if (this._configuration.emitCjsExtensionForCommonJS) {\n this._addModuleKindToEmit(\n ts.ModuleKind.CommonJS,\n tsconfig.options.outDir!,\n /* isPrimary */ tsconfig.options.module === ts.ModuleKind.CommonJS,\n '.cjs'\n );\n\n const cjsReason: IModuleKindReason = {\n outDir: tsconfig.options.outDir!,\n kind: 'CommonJS',\n extension: '.cjs',\n reason: 'emitCjsExtensionForCommonJS'\n };\n\n specifiedKinds.set(ts.ModuleKind.CommonJS, cjsReason);\n specifiedOutDirs.set(`${tsconfig.options.outDir!}:.cjs`, cjsReason);\n }\n\n if (this._configuration.emitMjsExtensionForESModule) {\n this._addModuleKindToEmit(\n ts.ModuleKind.ESNext,\n tsconfig.options.outDir!,\n /* isPrimary */ tsconfig.options.module === ts.ModuleKind.ESNext,\n '.mjs'\n );\n\n const mjsReason: IModuleKindReason = {\n outDir: tsconfig.options.outDir!,\n kind: 'ESNext',\n extension: '.mjs',\n reason: 'emitMjsExtensionForESModule'\n };\n\n specifiedKinds.set(ts.ModuleKind.ESNext, mjsReason);\n specifiedOutDirs.set(`${tsconfig.options.outDir!}:.mjs`, mjsReason);\n }\n\n if (!specifiedKinds.has(tsconfig.options.module)) {\n this._addModuleKindToEmit(\n tsconfig.options.module,\n tsconfig.options.outDir!,\n /* isPrimary */ true,\n /* jsExtensionOverride */ undefined\n );\n\n const tsConfigReason: IModuleKindReason = {\n outDir: tsconfig.options.outDir!,\n kind: ts.ModuleKind[tsconfig.options.module] as keyof typeof TTypescript.ModuleKind,\n extension: '.js',\n reason: 'tsconfig.json'\n };\n\n specifiedKinds.set(tsconfig.options.module, tsConfigReason);\n specifiedOutDirs.set(`${tsconfig.options.outDir!}:.js`, tsConfigReason);\n }\n\n if (this._configuration.additionalModuleKindsToEmit) {\n for (const additionalModuleKindToEmit of this._configuration.additionalModuleKindsToEmit) {\n const moduleKind: TTypescript.ModuleKind = this._parseModuleKind(\n ts,\n additionalModuleKindToEmit.moduleKind\n );\n\n const outDirKey: string = `${additionalModuleKindToEmit.outFolderName}:.js`;\n const moduleKindReason: IModuleKindReason = {\n kind: ts.ModuleKind[moduleKind] as keyof typeof TTypescript.ModuleKind,\n outDir: additionalModuleKindToEmit.outFolderName,\n extension: '.js',\n reason: `additionalModuleKindsToEmit`\n };\n\n const existingKind: IModuleKindReason | undefined = specifiedKinds.get(moduleKind);\n const existingDir: IModuleKindReason | undefined = specifiedOutDirs.get(outDirKey);\n\n if (existingKind) {\n throw new Error(\n `Module kind \"${additionalModuleKindToEmit.moduleKind}\" is already emitted at ${existingKind.outDir} with extension '${existingKind.extension}' by option ${existingKind.reason}.`\n );\n } else if (existingDir) {\n throw new Error(\n `Output folder \"${additionalModuleKindToEmit.outFolderName}\" already contains module kind ${existingDir.kind} with extension '${existingDir.extension}', specified by option ${existingDir.reason}.`\n );\n } else {\n const outFolderKey: string | undefined = this._addModuleKindToEmit(\n moduleKind,\n additionalModuleKindToEmit.outFolderName,\n /* isPrimary */ false,\n undefined\n );\n\n if (outFolderKey) {\n specifiedKinds.set(moduleKind, moduleKindReason);\n specifiedOutDirs.set(outFolderKey, moduleKindReason);\n }\n }\n }\n }\n }\n\n private _addModuleKindToEmit(\n moduleKind: TTypescript.ModuleKind,\n outFolderPath: string,\n isPrimary: boolean,\n jsExtensionOverride: string | undefined\n ): string | undefined {\n let outFolderName: string;\n if (path.isAbsolute(outFolderPath)) {\n outFolderName = path.relative(this._configuration.buildFolderPath, outFolderPath);\n } else {\n outFolderName = outFolderPath;\n outFolderPath = path.resolve(this._configuration.buildFolderPath, outFolderPath);\n }\n\n outFolderPath = Path.convertToSlashes(outFolderPath);\n outFolderPath = outFolderPath.replace(/\\/*$/, '/'); // Ensure the outFolderPath ends with a slash\n\n for (const existingModuleKindToEmit of this._moduleKindsToEmit) {\n let errorText: string | undefined;\n\n if (existingModuleKindToEmit.outFolderPath === outFolderPath) {\n if (existingModuleKindToEmit.jsExtensionOverride === jsExtensionOverride) {\n errorText =\n 'Unable to output two different module kinds with the same ' +\n `module extension (${jsExtensionOverride || '.js'}) to the same ` +\n `folder (\"${outFolderPath}\").`;\n }\n } else {\n let parentFolder: string | undefined;\n let childFolder: string | undefined;\n if (outFolderPath.startsWith(existingModuleKindToEmit.outFolderPath)) {\n parentFolder = outFolderPath;\n childFolder = existingModuleKindToEmit.outFolderPath;\n } else if (existingModuleKindToEmit.outFolderPath.startsWith(outFolderPath)) {\n parentFolder = existingModuleKindToEmit.outFolderPath;\n childFolder = outFolderPath;\n }\n\n if (parentFolder) {\n errorText =\n 'Unable to output two different module kinds to nested folders ' +\n `(\"${parentFolder}\" and \"${childFolder}\").`;\n }\n }\n\n if (errorText) {\n this._typescriptLogger.emitError(new Error(errorText));\n return undefined;\n }\n }\n\n this._moduleKindsToEmit.push({\n outFolderPath,\n moduleKind,\n jsExtensionOverride,\n\n isPrimary\n });\n\n return `${outFolderName}:${jsExtensionOverride || '.js'}`;\n }\n\n private _loadTsconfig(tool: ITypeScriptTool): TTypescript.ParsedCommandLine {\n const { ts, system } = tool;\n const parsedConfigFile: ReturnType<typeof ts.readConfigFile> = ts.readConfigFile(\n this._configuration.tsconfigPath,\n system.readFile\n );\n\n const currentFolder: string = path.dirname(this._configuration.tsconfigPath);\n const tsconfig: TTypescript.ParsedCommandLine = ts.parseJsonConfigFileContent(\n parsedConfigFile.config,\n {\n fileExists: system.fileExists,\n readFile: system.readFile,\n readDirectory: system.readDirectory,\n realpath: system.realpath,\n useCaseSensitiveFileNames: true\n },\n currentFolder,\n /*existingOptions:*/ undefined,\n this._configuration.tsconfigPath\n );\n\n if (tsconfig.options.incremental) {\n tsconfig.options.tsBuildInfoFile = this._tsCacheFilePath;\n }\n\n return tsconfig;\n }\n\n private _getCreateBuilderProgram(\n ts: ExtendedTypeScript\n ): TTypescript.CreateProgram<TTypescript.EmitAndSemanticDiagnosticsBuilderProgram> {\n const {\n _configuration: { emitChangedFilesCallback }\n } = this;\n\n const createMultiEmitBuilderProgram: TTypescript.CreateProgram<\n TTypescript.EmitAndSemanticDiagnosticsBuilderProgram\n > = (\n fileNames: readonly string[] | undefined,\n compilerOptions: TTypescript.CompilerOptions | undefined,\n host: TTypescript.CompilerHost | undefined,\n oldProgram: TTypescript.EmitAndSemanticDiagnosticsBuilderProgram | undefined,\n configFileParsingDiagnostics: readonly TTypescript.Diagnostic[] | undefined,\n projectReferences: readonly TTypescript.ProjectReference[] | undefined\n ): TTypescript.EmitAndSemanticDiagnosticsBuilderProgram => {\n // Reset performance counters\n ts.performance.disable();\n ts.performance.enable();\n\n this._typescriptTerminal.writeVerboseLine(`Reading program \"${compilerOptions!.configFilePath}\"`);\n\n const newProgram: TTypescript.EmitAndSemanticDiagnosticsBuilderProgram =\n ts.createEmitAndSemanticDiagnosticsBuilderProgram(\n fileNames,\n compilerOptions,\n host,\n oldProgram,\n configFileParsingDiagnostics,\n projectReferences\n );\n\n this._logReadPerformance(ts);\n\n const isolatedModules: boolean =\n !!this._configuration.useTranspilerWorker && !!compilerOptions!.isolatedModules;\n const mode: 'both' | 'declaration' = isolatedModules ? 'declaration' : 'both';\n\n if (isolatedModules) {\n // Kick the transpilation worker.\n const filesToTranspile: Map<string, string> = getFilesToTranspileFromBuilderProgram(newProgram);\n this._queueTranspileInWorker(this._tool!, compilerOptions!, filesToTranspile);\n }\n\n const { emit: originalEmit } = newProgram;\n\n const emit: TTypescript.Program['emit'] = (\n outerTargetSourceFile?: TTypescript.SourceFile,\n outerWriteFile?: TTypescript.WriteFileCallback,\n outerCancellationToken?: TTypescript.CancellationToken,\n outerEmitOnlyDtsFiles?: boolean,\n outerCustomTransformers?: TTypescript.CustomTransformers\n ) => {\n const innerProgram: TTypescript.Program = newProgram.getProgram();\n\n const innerCompilerOptions: TTypescript.CompilerOptions = innerProgram.getCompilerOptions();\n\n const { changedFiles } = configureProgramForMultiEmit(\n innerProgram,\n ts,\n this._moduleKindsToEmit,\n mode\n );\n\n const result: TTypescript.EmitResult = originalEmit.call(\n newProgram,\n outerTargetSourceFile,\n outerWriteFile,\n outerCancellationToken,\n outerEmitOnlyDtsFiles,\n outerCustomTransformers\n );\n\n (result as IExtendedEmitResult).changedSourceFiles = changedFiles;\n\n this._typescriptTerminal.writeVerboseLine(\n `Emitting program \"${innerCompilerOptions!.configFilePath}\"`\n );\n\n this._logEmitPerformance(ts);\n\n // Reset performance counters\n ts.performance.disable();\n ts.performance.enable();\n\n emitChangedFilesCallback(innerProgram, changedFiles);\n\n return result;\n };\n\n newProgram.emit = emit;\n\n return newProgram;\n };\n\n return createMultiEmitBuilderProgram;\n }\n\n private _buildSolutionBuilderHost(tool: ITypeScriptTool): TSolutionHost {\n const reportSolutionBuilderStatus: TTypescript.DiagnosticReporter = tool.reportDiagnostic;\n const reportEmitErrorSummary: TTypescript.ReportEmitErrorSummary = (errorCount: number): void => {\n // Do nothing\n };\n\n const { ts, system } = tool;\n\n const solutionBuilderHost: TTypescript.SolutionBuilderHost<TTypescript.EmitAndSemanticDiagnosticsBuilderProgram> =\n ts.createSolutionBuilderHost(\n system,\n this._getCreateBuilderProgram(ts),\n tool.reportDiagnostic,\n reportSolutionBuilderStatus,\n reportEmitErrorSummary\n );\n\n solutionBuilderHost.afterProgramEmitAndDiagnostics = (\n program: TTypescript.EmitAndSemanticDiagnosticsBuilderProgram\n ) => {\n // Use the native metric since we aren't overwriting the writer\n this._typescriptTerminal.writeVerboseLine(\n `I/O Write: ${ts.performance.getDuration('I/O Write')}ms (${ts.performance.getCount(\n 'beforeIOWrite'\n )} files)`\n );\n };\n\n return solutionBuilderHost;\n }\n\n private _buildIncrementalCompilerHost(\n tool: ITypeScriptTool,\n tsconfig: TTypescript.ParsedCommandLine\n ): TTypescript.CompilerHost {\n const { ts, system } = tool;\n\n let compilerHost: TTypescript.CompilerHost | undefined;\n\n if (tsconfig.options.incremental) {\n compilerHost = ts.createIncrementalCompilerHost(tsconfig.options, system);\n } else {\n compilerHost = (ts.createCompilerHostWorker ?? ts.createCompilerHost)(\n tsconfig.options,\n undefined,\n system\n );\n }\n\n this._changeCompilerHostToUseCache(compilerHost, tool);\n\n return compilerHost;\n }\n\n private _buildWatchCompilerHost(\n tool: ITypeScriptTool,\n tsconfig: TTypescript.ParsedCommandLine\n ): TWatchCompilerHost {\n const { ts, system } = tool;\n\n const reportWatchStatus: TTypescript.DiagnosticReporter = (diagnostic: TTypescript.Diagnostic): void => {\n this._printDiagnosticMessage(ts, diagnostic);\n };\n\n const compilerHost: TWatchCompilerHost = ts.createWatchCompilerHost(\n tsconfig.fileNames,\n tsconfig.options,\n system,\n this._getCreateBuilderProgram(ts),\n tool.reportDiagnostic,\n reportWatchStatus,\n tsconfig.projectReferences,\n tsconfig.watchOptions\n );\n\n return compilerHost;\n }\n\n private _changeCompilerHostToUseCache(compilerHost: TTypescript.CompilerHost, tool: ITypeScriptTool): void {\n const { sourceFileCache } = tool;\n\n const { getSourceFile: innerGetSourceFile } = compilerHost;\n if ((innerGetSourceFile as { cache?: typeof sourceFileCache }).cache === sourceFileCache) {\n return;\n }\n\n compilerHost.getCurrentDirectory = () => this._configuration.buildFolderPath;\n\n // Enable source file persistence\n const getSourceFile: typeof innerGetSourceFile & {\n cache?: typeof sourceFileCache;\n } = (\n fileName: string,\n languageVersionOrOptions: TTypescript.ScriptTarget | TTypescript.CreateSourceFileOptions,\n onError?: ((message: string) => void) | undefined,\n shouldCreateNewSourceFile?: boolean | undefined\n ): TTypescript.SourceFile | undefined => {\n if (!shouldCreateNewSourceFile) {\n const cachedSourceFile: TTypescript.SourceFile | undefined = sourceFileCache.get(fileName);\n if (cachedSourceFile) {\n return cachedSourceFile;\n }\n }\n\n const result: TTypescript.SourceFile | undefined = innerGetSourceFile(\n fileName,\n languageVersionOrOptions,\n onError,\n shouldCreateNewSourceFile\n );\n if (result) {\n sourceFileCache.set(fileName, result);\n } else {\n sourceFileCache.delete(fileName);\n }\n return result;\n };\n\n getSourceFile.cache = sourceFileCache;\n\n compilerHost.getSourceFile = getSourceFile;\n }\n\n private _buildWatchSolutionBuilderHost(tool: ITypeScriptTool): TWatchSolutionHost {\n const { reportDiagnostic, ts, system } = tool;\n\n const host: TWatchSolutionHost = ts.createSolutionBuilderWithWatchHost(\n system,\n this._getCreateBuilderProgram(ts),\n reportDiagnostic,\n reportDiagnostic,\n reportDiagnostic\n );\n\n return host;\n }\n\n private _parseModuleKind(ts: ExtendedTypeScript, moduleKindName: string): TTypescript.ModuleKind {\n switch (moduleKindName.toLowerCase()) {\n case 'commonjs':\n return ts.ModuleKind.CommonJS;\n\n case 'amd':\n return ts.ModuleKind.AMD;\n\n case 'umd':\n return ts.ModuleKind.UMD;\n\n case 'system':\n return ts.ModuleKind.System;\n\n case 'es2015':\n return ts.ModuleKind.ES2015;\n\n case 'esnext':\n return ts.ModuleKind.ESNext;\n\n default:\n throw new Error(`\"${moduleKindName}\" is not a valid module kind name.`);\n }\n }\n\n private _queueTranspileInWorker(\n tool: ITypeScriptTool,\n compilerOptions: TTypescript.CompilerOptions,\n filesToTranspile: Map<string, string>\n ): void {\n const { pendingTranspilePromises, pendingTranspileSignals } = tool;\n let maybeWorker: Worker | undefined = tool.worker;\n if (!maybeWorker) {\n const workerData: ITypescriptWorkerData = {\n typeScriptToolPath: this._configuration.typeScriptToolPath\n };\n tool.worker = maybeWorker = new Worker(require.resolve('./TranspilerWorker.js'), {\n workerData: workerData\n });\n\n maybeWorker.on('message', (response: ITranspilationResponseMessage) => {\n const { requestId: resolvingRequestId, type, result } = response;\n const signal: ITranspileSignal | undefined = pendingTranspileSignals.get(resolvingRequestId);\n\n if (type === 'error') {\n const error: Error = Object.assign(new Error(result.message), result);\n if (signal) {\n signal.reject(error);\n } else {\n this._typescriptTerminal.writeErrorLine(\n `Unexpected worker rejection for request with id ${resolvingRequestId}: ${error}`\n );\n }\n } else if (signal) {\n signal.resolve(result);\n } else {\n this._typescriptTerminal.writeErrorLine(\n `Unexpected worker resolution for request with id ${resolvingRequestId}`\n );\n }\n\n pendingTranspileSignals.delete(resolvingRequestId);\n pendingTranspilePromises.delete(resolvingRequestId);\n });\n\n maybeWorker.once('exit', (exitCode: number) => {\n if (pendingTranspileSignals.size) {\n const error: Error = new Error(`Worker exited unexpectedly with code ${exitCode}.`);\n for (const { reject: rejectTranspile } of pendingTranspileSignals.values()) {\n rejectTranspile(error);\n }\n pendingTranspileSignals.clear();\n }\n });\n\n maybeWorker.once('error', (err: Error) => {\n for (const { reject: rejectTranspile } of pendingTranspileSignals.values()) {\n rejectTranspile(err);\n }\n pendingTranspileSignals.clear();\n });\n }\n\n // make linter happy\n const worker: Worker = maybeWorker;\n\n const requestId: number = ++this._nextRequestId;\n const transpilePromise: Promise<TTypescript.EmitResult> = new Promise(\n (resolve: (result: TTypescript.EmitResult) => void, reject: (err: Error) => void) => {\n pendingTranspileSignals.set(requestId, { resolve, reject });\n\n this._typescriptTerminal.writeLine(`Asynchronously transpiling ${compilerOptions.configFilePath}`);\n const request: ITranspilationRequestMessage = {\n compilerOptions,\n filesToTranspile,\n moduleKindsToEmit: this._moduleKindsToEmit,\n requestId\n };\n\n worker.postMessage(request);\n }\n );\n\n pendingTranspilePromises.set(requestId, transpilePromise);\n }\n\n private _cleanupWorker(): void {\n const tool: ITypeScriptTool | undefined = this._tool;\n if (!tool) {\n return;\n }\n\n const { worker } = tool;\n if (worker) {\n worker.postMessage(false);\n tool.worker = undefined;\n }\n }\n}\n\nfunction getFilesToTranspileFromBuilderProgram(\n builderProgram: TTypescript.BuilderProgram\n): Map<string, string> {\n const program: ExtendedBuilderProgram = builderProgram as unknown as ExtendedBuilderProgram;\n // getState was removed in Typescript 5.6, replaced with state\n const changedFilesSet: Set<string> = (program.state ?? program.getState()).changedFilesSet;\n\n const filesToTranspile: Map<string, string> = new Map();\n for (const fileName of changedFilesSet) {\n const sourceFile: TTypescript.SourceFile | undefined = builderProgram.getSourceFile(fileName);\n if (sourceFile && !sourceFile.isDeclarationFile) {\n filesToTranspile.set(sourceFile.fileName, sourceFile.text);\n }\n }\n return filesToTranspile;\n}\n\nfunction getFilesToTranspileFromProgram(program: TTypescript.Program): Map<string, string> {\n const filesToTranspile: Map<string, string> = new Map();\n for (const sourceFile of program.getSourceFiles()) {\n if (!sourceFile.isDeclarationFile) {\n filesToTranspile.set(sourceFile.fileName, sourceFile.text);\n }\n }\n return filesToTranspile;\n}\n"]}
|
|
@@ -50,6 +50,11 @@ export interface ITypeScriptConfigurationJson {
|
|
|
50
50
|
* If true, and the tsconfig has \"isolatedModules\": true, then transpilation will happen in parallel in a worker thread.
|
|
51
51
|
*/
|
|
52
52
|
useTranspilerWorker?: boolean;
|
|
53
|
+
/**
|
|
54
|
+
* If true, the TypeScript compiler will only resolve symlinks to their targets if the links are in a node_modules folder.
|
|
55
|
+
* This significantly reduces file system operations in typical usage.
|
|
56
|
+
*/
|
|
57
|
+
onlyResolveSymlinksInNodeModules?: boolean;
|
|
53
58
|
project?: string;
|
|
54
59
|
/**
|
|
55
60
|
* Configures additional file types that should be copied into the TypeScript compiler's emit folders, for example
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TypeScriptPlugin.d.ts","sourceRoot":"","sources":["../src/TypeScriptPlugin.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,KAAK,WAAW,MAAM,YAAY,CAAC;AAC/C,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AAEnC,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAErD,OAAO,KAAK,EACV,iBAAiB,EACjB,gBAAgB,EAChB,eAAe,EAKhB,MAAM,iBAAiB,CAAC;AAMzB;;;;GAIG;AACH,eAAO,MAAM,WAAW,EAAE,mBAAyC,CAAC;AAEpE;;GAEG;AACH,MAAM,WAAW,eAAe;IAC9B,UAAU,EAAE,UAAU,GAAG,KAAK,GAAG,KAAK,GAAG,QAAQ,GAAG,QAAQ,GAAG,QAAQ,CAAC;IACxE,aAAa,EAAE,MAAM,CAAC;IACtB,mBAAmB,CAAC,EAAE,MAAM,CAAC;CAC9B;AAED;;GAEG;AACH,MAAM,WAAW,8BAA8B;IAC7C,cAAc,EAAE,MAAM,EAAE,CAAC;IACzB,YAAY,EAAE,MAAM,EAAE,CAAC;IACvB,YAAY,EAAE,MAAM,EAAE,CAAC;CACxB;AAED;;GAEG;AACH,MAAM,WAAW,4BAA4B;IAC3C;;;OAGG;IACH,2BAA2B,CAAC,EAAE,eAAe,EAAE,GAAG,SAAS,CAAC;IAE5D;;OAEG;IACH,2BAA2B,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAElD;;OAEG;IACH,2BAA2B,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAElD;;;OAGG;IACH,sBAAsB,CAAC,EAAE,OAAO,CAAC;IAEjC;;OAEG;IACH,mBAAmB,CAAC,EAAE,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"TypeScriptPlugin.d.ts","sourceRoot":"","sources":["../src/TypeScriptPlugin.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,KAAK,WAAW,MAAM,YAAY,CAAC;AAC/C,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AAEnC,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAErD,OAAO,KAAK,EACV,iBAAiB,EACjB,gBAAgB,EAChB,eAAe,EAKhB,MAAM,iBAAiB,CAAC;AAMzB;;;;GAIG;AACH,eAAO,MAAM,WAAW,EAAE,mBAAyC,CAAC;AAEpE;;GAEG;AACH,MAAM,WAAW,eAAe;IAC9B,UAAU,EAAE,UAAU,GAAG,KAAK,GAAG,KAAK,GAAG,QAAQ,GAAG,QAAQ,GAAG,QAAQ,CAAC;IACxE,aAAa,EAAE,MAAM,CAAC;IACtB,mBAAmB,CAAC,EAAE,MAAM,CAAC;CAC9B;AAED;;GAEG;AACH,MAAM,WAAW,8BAA8B;IAC7C,cAAc,EAAE,MAAM,EAAE,CAAC;IACzB,YAAY,EAAE,MAAM,EAAE,CAAC;IACvB,YAAY,EAAE,MAAM,EAAE,CAAC;CACxB;AAED;;GAEG;AACH,MAAM,WAAW,4BAA4B;IAC3C;;;OAGG;IACH,2BAA2B,CAAC,EAAE,eAAe,EAAE,GAAG,SAAS,CAAC;IAE5D;;OAEG;IACH,2BAA2B,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAElD;;OAEG;IACH,2BAA2B,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAElD;;;OAGG;IACH,sBAAsB,CAAC,EAAE,OAAO,CAAC;IAEjC;;OAEG;IACH,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAE9B;;;OAGG;IACH,gCAAgC,CAAC,EAAE,OAAO,CAAC;IAO3C,OAAO,CAAC,EAAE,MAAM,CAAC;IAEjB;;;OAGG;IACH,kBAAkB,CAAC,EAAE,8BAA8B,CAAC;CACrD;AAED;;GAEG;AACH,MAAM,WAAW,+BAA+B;IAC9C,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED;;GAEG;AACH,MAAM,WAAW,gBAAgB;IAC/B,eAAe,CAAC,EAAE,+BAA+B,CAAC;CACnD;AAED;;GAEG;AACH,MAAM,WAAW,wBAAwB;IACvC,OAAO,EAAE,WAAW,CAAC,OAAO,CAAC;IAC7B,YAAY,CAAC,EAAE,WAAW,CAAC,WAAW,CAAC,UAAU,CAAC,CAAC;CACpD;AAED;;GAEG;AACH,MAAM,WAAW,yBAAyB;IACxC,QAAQ,CAAC,kBAAkB,EAAE,QAAQ,CAAC,wBAAwB,CAAC,CAAC;CACjE;AAQD;;GAEG;AACH,wBAAsB,oCAAoC,CACxD,iBAAiB,EAAE,iBAAiB,EACpC,QAAQ,EAAE,SAAS,GAClB,OAAO,CAAC,4BAA4B,GAAG,SAAS,CAAC,CAgCnD;AAeD;;GAEG;AACH,wBAAsB,4BAA4B,CAChD,iBAAiB,EAAE,iBAAiB,EACpC,QAAQ,EAAE,SAAS,EACnB,2BAA2B,EAAE,4BAA4B,GAAG,SAAS,GACpE,OAAO,CAAC,gBAAgB,GAAG,SAAS,CAAC,CA8CvC;AAED,MAAM,CAAC,OAAO,OAAO,gBAAiB,YAAW,eAAe;IACvD,QAAQ,EAAE,yBAAyB,CAExC;IAEK,KAAK,CAAC,WAAW,EAAE,gBAAgB,EAAE,iBAAiB,EAAE,iBAAiB,GAAG,IAAI;YA6CzE,kCAAkC;YA0ClC,0BAA0B;YA6D1B,uBAAuB;CAYtC"}
|
package/lib/TypeScriptPlugin.js
CHANGED
|
@@ -197,6 +197,7 @@ class TypeScriptPlugin {
|
|
|
197
197
|
typeScriptToolPath: typeScriptToolPath,
|
|
198
198
|
buildProjectReferences: typeScriptConfigurationJson === null || typeScriptConfigurationJson === void 0 ? void 0 : typeScriptConfigurationJson.buildProjectReferences,
|
|
199
199
|
useTranspilerWorker: typeScriptConfigurationJson === null || typeScriptConfigurationJson === void 0 ? void 0 : typeScriptConfigurationJson.useTranspilerWorker,
|
|
200
|
+
onlyResolveSymlinksInNodeModules: typeScriptConfigurationJson === null || typeScriptConfigurationJson === void 0 ? void 0 : typeScriptConfigurationJson.onlyResolveSymlinksInNodeModules,
|
|
200
201
|
tsconfigPath: getTsconfigFilePath(heftConfiguration, typeScriptConfigurationJson),
|
|
201
202
|
additionalModuleKindsToEmit: typeScriptConfigurationJson === null || typeScriptConfigurationJson === void 0 ? void 0 : typeScriptConfigurationJson.additionalModuleKindsToEmit,
|
|
202
203
|
emitCjsExtensionForCommonJS: !!(typeScriptConfigurationJson === null || typeScriptConfigurationJson === void 0 ? void 0 : typeScriptConfigurationJson.emitCjsExtensionForCommonJS),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TypeScriptPlugin.js","sourceRoot":"","sources":["../src/TypeScriptPlugin.ts"],"names":[],"mappings":"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","sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.\n// See LICENSE in the project root for license information.\n\nimport * as path from 'path';\n\nimport type * as TTypescript from 'typescript';\nimport { SyncHook } from 'tapable';\nimport { FileSystem, Path } from '@rushstack/node-core-library';\nimport type { ITerminal } from '@rushstack/terminal';\nimport { ConfigurationFile, InheritanceType, PathResolutionMethod } from '@rushstack/heft-config-file';\nimport type {\n HeftConfiguration,\n IHeftTaskSession,\n IHeftTaskPlugin,\n IHeftTaskRunHookOptions,\n IHeftTaskRunIncrementalHookOptions,\n ICopyOperation,\n IHeftTaskFileOperations\n} from '@rushstack/heft';\n\nimport { TypeScriptBuilder, type ITypeScriptBuilderConfiguration } from './TypeScriptBuilder';\nimport anythingSchema from './schemas/anything.schema.json';\nimport typescriptConfigSchema from './schemas/typescript.schema.json';\n\n/**\n * The name of the plugin, as specified in heft-plugin.json\n *\n * @public\n */\nexport const PLUGIN_NAME: 'typescript-plugin' = 'typescript-plugin';\n\n/**\n * @beta\n */\nexport interface IEmitModuleKind {\n moduleKind: 'commonjs' | 'amd' | 'umd' | 'system' | 'es2015' | 'esnext';\n outFolderName: string;\n jsExtensionOverride?: string;\n}\n\n/**\n * @beta\n */\nexport interface IStaticAssetsCopyConfiguration {\n fileExtensions: string[];\n excludeGlobs: string[];\n includeGlobs: string[];\n}\n\n/**\n * @beta\n */\nexport interface ITypeScriptConfigurationJson {\n /**\n * If provided, emit these module kinds in addition to the modules specified in the tsconfig.\n * Note that this option only applies to the main tsconfig.json configuration.\n */\n additionalModuleKindsToEmit?: IEmitModuleKind[] | undefined;\n\n /**\n * If 'true', emit CommonJS output into the TSConfig outDir with the file extension '.cjs'\n */\n emitCjsExtensionForCommonJS?: boolean | undefined;\n\n /**\n * If 'true', emit ESModule output into the TSConfig outDir with the file extension '.mjs'\n */\n emitMjsExtensionForESModule?: boolean | undefined;\n\n /**\n * If true, enable behavior analogous to the \"tsc --build\" command. Will build projects referenced by the main project in dependency order.\n * Note that this will effectively enable \\\"noEmitOnError\\\".\n */\n buildProjectReferences?: boolean;\n\n /**\n * If true, and the tsconfig has \\\"isolatedModules\\\": true, then transpilation will happen in parallel in a worker thread.\n */\n useTranspilerWorker?: boolean;\n\n /*\n * Specifies the tsconfig.json file that will be used for compilation. Equivalent to the \"project\" argument for the 'tsc' and 'tslint' command line tools.\n *\n * The default value is \"./tsconfig.json\"\n */\n project?: string;\n\n /**\n * Configures additional file types that should be copied into the TypeScript compiler's emit folders, for example\n * so that these files can be resolved by import statements.\n */\n staticAssetsToCopy?: IStaticAssetsCopyConfiguration;\n}\n\n/**\n * @beta\n */\nexport interface IPartialTsconfigCompilerOptions {\n outDir?: string;\n}\n\n/**\n * @beta\n */\nexport interface IPartialTsconfig {\n compilerOptions?: IPartialTsconfigCompilerOptions;\n}\n\n/**\n * @beta\n */\nexport interface IChangedFilesHookOptions {\n program: TTypescript.Program;\n changedFiles?: ReadonlySet<TTypescript.SourceFile>;\n}\n\n/**\n * @beta\n */\nexport interface ITypeScriptPluginAccessor {\n readonly onChangedFilesHook: SyncHook<IChangedFilesHookOptions>;\n}\n\nlet _typeScriptConfigurationFileLoader: ConfigurationFile<ITypeScriptConfigurationJson> | undefined;\nconst _typeScriptConfigurationFilePromiseCache: Map<\n string,\n Promise<ITypeScriptConfigurationJson | undefined>\n> = new Map();\n\n/**\n * @beta\n */\nexport async function loadTypeScriptConfigurationFileAsync(\n heftConfiguration: HeftConfiguration,\n terminal: ITerminal\n): Promise<ITypeScriptConfigurationJson | undefined> {\n const buildFolderPath: string = heftConfiguration.buildFolderPath;\n\n // Check the cache first\n let typescriptConfigurationFilePromise: Promise<ITypeScriptConfigurationJson | undefined> | undefined =\n _typeScriptConfigurationFilePromiseCache.get(buildFolderPath);\n\n if (!typescriptConfigurationFilePromise) {\n // Ensure that the file loader has been initialized.\n if (!_typeScriptConfigurationFileLoader) {\n _typeScriptConfigurationFileLoader = new ConfigurationFile<ITypeScriptConfigurationJson>({\n projectRelativeFilePath: 'config/typescript.json',\n jsonSchemaObject: typescriptConfigSchema,\n propertyInheritance: {\n staticAssetsToCopy: {\n // When merging objects, arrays will be automatically appended\n inheritanceType: InheritanceType.merge\n }\n }\n });\n }\n\n typescriptConfigurationFilePromise =\n _typeScriptConfigurationFileLoader.tryLoadConfigurationFileForProjectAsync(\n terminal,\n buildFolderPath,\n heftConfiguration.rigConfig\n );\n _typeScriptConfigurationFilePromiseCache.set(buildFolderPath, typescriptConfigurationFilePromise);\n }\n\n return await typescriptConfigurationFilePromise;\n}\n\nlet _partialTsconfigFileLoader: ConfigurationFile<IPartialTsconfig> | undefined;\nconst _partialTsconfigFilePromiseCache: Map<string, Promise<IPartialTsconfig | undefined>> = new Map();\n\nfunction getTsconfigFilePath(\n heftConfiguration: HeftConfiguration,\n typeScriptConfigurationJson?: ITypeScriptConfigurationJson\n): string {\n return Path.convertToSlashes(\n // Use path.resolve because the path can start with `./` or `../`\n path.resolve(heftConfiguration.buildFolderPath, typeScriptConfigurationJson?.project || './tsconfig.json')\n );\n}\n\n/**\n * @beta\n */\nexport async function loadPartialTsconfigFileAsync(\n heftConfiguration: HeftConfiguration,\n terminal: ITerminal,\n typeScriptConfigurationJson: ITypeScriptConfigurationJson | undefined\n): Promise<IPartialTsconfig | undefined> {\n const buildFolderPath: string = heftConfiguration.buildFolderPath;\n\n // Check the cache first\n let partialTsconfigFilePromise: Promise<IPartialTsconfig | undefined> | undefined =\n _partialTsconfigFilePromiseCache.get(buildFolderPath);\n\n if (!partialTsconfigFilePromise) {\n // We don't want to load the tsconfig.json file through the rig, but we do want to take\n // advantage of the extends functionality that ConfigurationFile provides. So we'll\n // check to see if the file exists and exit early if not.\n\n const tsconfigFilePath: string = getTsconfigFilePath(heftConfiguration, typeScriptConfigurationJson);\n terminal.writeVerboseLine(`Looking for tsconfig at ${tsconfigFilePath}`);\n const tsconfigExists: boolean = await FileSystem.existsAsync(tsconfigFilePath);\n if (!tsconfigExists) {\n partialTsconfigFilePromise = Promise.resolve(undefined);\n } else {\n // Ensure that the file loader has been initialized.\n if (!_partialTsconfigFileLoader) {\n _partialTsconfigFileLoader = new ConfigurationFile<IPartialTsconfig>({\n projectRelativeFilePath: typeScriptConfigurationJson?.project || 'tsconfig.json',\n jsonSchemaObject: anythingSchema,\n propertyInheritance: {\n compilerOptions: {\n inheritanceType: InheritanceType.merge\n }\n },\n jsonPathMetadata: {\n '$.compilerOptions.outDir': {\n pathResolutionMethod: PathResolutionMethod.resolvePathRelativeToConfigurationFile\n }\n }\n });\n }\n\n partialTsconfigFilePromise = _partialTsconfigFileLoader.loadConfigurationFileForProjectAsync(\n terminal,\n buildFolderPath,\n heftConfiguration.rigConfig\n );\n }\n _partialTsconfigFilePromiseCache.set(buildFolderPath, partialTsconfigFilePromise);\n }\n\n return await partialTsconfigFilePromise;\n}\n\nexport default class TypeScriptPlugin implements IHeftTaskPlugin {\n public accessor: ITypeScriptPluginAccessor = {\n onChangedFilesHook: new SyncHook<IChangedFilesHookOptions>(['changedFilesHookOptions'])\n };\n\n public apply(taskSession: IHeftTaskSession, heftConfiguration: HeftConfiguration): void {\n taskSession.hooks.registerFileOperations.tapPromise(\n PLUGIN_NAME,\n async (fileOperations: IHeftTaskFileOperations): Promise<IHeftTaskFileOperations> => {\n // TODO: We should consider maybe only doing one copy of static assets and pointing\n // all source files to this set of static assets. This would allow us to avoid\n // having to copy the static assets multiple times, increasing build times and\n // package size.\n for (const copyOperation of await this._getStaticAssetCopyOperationsAsync(\n taskSession,\n heftConfiguration\n )) {\n fileOperations.copyOperations.add(copyOperation);\n }\n\n return fileOperations;\n }\n );\n\n taskSession.hooks.run.tapPromise(PLUGIN_NAME, async (runOptions: IHeftTaskRunHookOptions) => {\n const builder: TypeScriptBuilder | false = await this._getTypeScriptBuilderAsync(\n taskSession,\n heftConfiguration\n );\n if (builder) {\n await builder.invokeAsync();\n }\n });\n\n let incrementalBuilder: TypeScriptBuilder | undefined | false;\n taskSession.hooks.runIncremental.tapPromise(\n PLUGIN_NAME,\n async (runIncrementalOptions: IHeftTaskRunIncrementalHookOptions) => {\n if (incrementalBuilder === undefined) {\n // eslint-disable-next-line require-atomic-updates\n incrementalBuilder = await this._getTypeScriptBuilderAsync(taskSession, heftConfiguration);\n }\n\n if (incrementalBuilder) {\n await incrementalBuilder.invokeAsync(runIncrementalOptions.requestRun);\n }\n }\n );\n }\n\n private async _getStaticAssetCopyOperationsAsync(\n taskSession: IHeftTaskSession,\n heftConfiguration: HeftConfiguration\n ): Promise<ICopyOperation[]> {\n const typeScriptConfiguration: ITypeScriptConfigurationJson | undefined =\n await loadTypeScriptConfigurationFileAsync(heftConfiguration, taskSession.logger.terminal);\n\n // We only care about the copy if static assets were specified.\n const copyOperations: ICopyOperation[] = [];\n if (\n typeScriptConfiguration?.staticAssetsToCopy?.fileExtensions?.length ||\n typeScriptConfiguration?.staticAssetsToCopy?.includeGlobs?.length ||\n typeScriptConfiguration?.staticAssetsToCopy?.excludeGlobs?.length\n ) {\n const destinationFolderPaths: Set<string> = new Set<string>();\n\n // Add the output folder and all additional module kind output folders as destinations\n const tsconfigOutDir: string | undefined = await this._getTsconfigOutDirAsync(\n taskSession,\n heftConfiguration,\n typeScriptConfiguration\n );\n if (tsconfigOutDir) {\n destinationFolderPaths.add(tsconfigOutDir);\n }\n for (const emitModule of typeScriptConfiguration?.additionalModuleKindsToEmit || []) {\n destinationFolderPaths.add(`${heftConfiguration.buildFolderPath}/${emitModule.outFolderName}`);\n }\n\n copyOperations.push({\n ...typeScriptConfiguration?.staticAssetsToCopy,\n\n // For now - these may need to be revised later\n sourcePath: path.resolve(heftConfiguration.buildFolderPath, 'src'),\n destinationFolders: Array.from(destinationFolderPaths),\n flatten: false,\n hardlink: false\n });\n }\n return copyOperations;\n }\n\n private async _getTypeScriptBuilderAsync(\n taskSession: IHeftTaskSession,\n heftConfiguration: HeftConfiguration\n ): Promise<TypeScriptBuilder | false> {\n const terminal: ITerminal = taskSession.logger.terminal;\n\n const typeScriptConfigurationJson: ITypeScriptConfigurationJson | undefined =\n await loadTypeScriptConfigurationFileAsync(heftConfiguration, terminal);\n\n const partialTsconfigFile: IPartialTsconfig | undefined = await loadPartialTsconfigFileAsync(\n heftConfiguration,\n terminal,\n typeScriptConfigurationJson\n );\n\n if (!partialTsconfigFile) {\n // There is no tsconfig file, we can exit early\n // This check may need watch mode to break on tsconfig addition/deletion\n return false;\n }\n\n const typeScriptToolPath: string = await heftConfiguration.rigPackageResolver.resolvePackageAsync(\n 'typescript',\n terminal\n );\n\n // Build out the configuration\n const typeScriptBuilderConfiguration: ITypeScriptBuilderConfiguration = {\n buildFolderPath: heftConfiguration.buildFolderPath,\n // Build metadata is just another build output, but we put it in the temp folder because it will\n // usually be discarded when published.\n buildMetadataFolderPath: taskSession.tempFolderPath,\n typeScriptToolPath: typeScriptToolPath,\n\n buildProjectReferences: typeScriptConfigurationJson?.buildProjectReferences,\n\n useTranspilerWorker: typeScriptConfigurationJson?.useTranspilerWorker,\n\n tsconfigPath: getTsconfigFilePath(heftConfiguration, typeScriptConfigurationJson),\n additionalModuleKindsToEmit: typeScriptConfigurationJson?.additionalModuleKindsToEmit,\n emitCjsExtensionForCommonJS: !!typeScriptConfigurationJson?.emitCjsExtensionForCommonJS,\n emitMjsExtensionForESModule: !!typeScriptConfigurationJson?.emitMjsExtensionForESModule,\n scopedLogger: taskSession.logger,\n emitChangedFilesCallback: (\n program: TTypescript.Program,\n changedFiles?: Set<TTypescript.SourceFile>\n ) => {\n // Provide the typescript program dependent plugins\n if (this.accessor.onChangedFilesHook.isUsed()) {\n this.accessor.onChangedFilesHook.call({ program, changedFiles });\n }\n }\n };\n\n // Run the builder\n const typeScriptBuilder: TypeScriptBuilder = new TypeScriptBuilder(typeScriptBuilderConfiguration);\n return typeScriptBuilder;\n }\n\n private async _getTsconfigOutDirAsync(\n taskSession: IHeftTaskSession,\n heftConfiguration: HeftConfiguration,\n typeScriptConfiguration: ITypeScriptConfigurationJson | undefined\n ): Promise<string | undefined> {\n const partialTsconfigFile: IPartialTsconfig | undefined = await loadPartialTsconfigFileAsync(\n heftConfiguration,\n taskSession.logger.terminal,\n typeScriptConfiguration\n );\n return partialTsconfigFile?.compilerOptions?.outDir;\n }\n}\n"]}
|
|
1
|
+
{"version":3,"file":"TypeScriptPlugin.js","sourceRoot":"","sources":["../src/TypeScriptPlugin.ts"],"names":[],"mappings":"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","sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.\n// See LICENSE in the project root for license information.\n\nimport * as path from 'path';\n\nimport type * as TTypescript from 'typescript';\nimport { SyncHook } from 'tapable';\nimport { FileSystem, Path } from '@rushstack/node-core-library';\nimport type { ITerminal } from '@rushstack/terminal';\nimport { ConfigurationFile, InheritanceType, PathResolutionMethod } from '@rushstack/heft-config-file';\nimport type {\n HeftConfiguration,\n IHeftTaskSession,\n IHeftTaskPlugin,\n IHeftTaskRunHookOptions,\n IHeftTaskRunIncrementalHookOptions,\n ICopyOperation,\n IHeftTaskFileOperations\n} from '@rushstack/heft';\n\nimport { TypeScriptBuilder, type ITypeScriptBuilderConfiguration } from './TypeScriptBuilder';\nimport anythingSchema from './schemas/anything.schema.json';\nimport typescriptConfigSchema from './schemas/typescript.schema.json';\n\n/**\n * The name of the plugin, as specified in heft-plugin.json\n *\n * @public\n */\nexport const PLUGIN_NAME: 'typescript-plugin' = 'typescript-plugin';\n\n/**\n * @beta\n */\nexport interface IEmitModuleKind {\n moduleKind: 'commonjs' | 'amd' | 'umd' | 'system' | 'es2015' | 'esnext';\n outFolderName: string;\n jsExtensionOverride?: string;\n}\n\n/**\n * @beta\n */\nexport interface IStaticAssetsCopyConfiguration {\n fileExtensions: string[];\n excludeGlobs: string[];\n includeGlobs: string[];\n}\n\n/**\n * @beta\n */\nexport interface ITypeScriptConfigurationJson {\n /**\n * If provided, emit these module kinds in addition to the modules specified in the tsconfig.\n * Note that this option only applies to the main tsconfig.json configuration.\n */\n additionalModuleKindsToEmit?: IEmitModuleKind[] | undefined;\n\n /**\n * If 'true', emit CommonJS output into the TSConfig outDir with the file extension '.cjs'\n */\n emitCjsExtensionForCommonJS?: boolean | undefined;\n\n /**\n * If 'true', emit ESModule output into the TSConfig outDir with the file extension '.mjs'\n */\n emitMjsExtensionForESModule?: boolean | undefined;\n\n /**\n * If true, enable behavior analogous to the \"tsc --build\" command. Will build projects referenced by the main project in dependency order.\n * Note that this will effectively enable \\\"noEmitOnError\\\".\n */\n buildProjectReferences?: boolean;\n\n /**\n * If true, and the tsconfig has \\\"isolatedModules\\\": true, then transpilation will happen in parallel in a worker thread.\n */\n useTranspilerWorker?: boolean;\n\n /**\n * If true, the TypeScript compiler will only resolve symlinks to their targets if the links are in a node_modules folder.\n * This significantly reduces file system operations in typical usage.\n */\n onlyResolveSymlinksInNodeModules?: boolean;\n\n /*\n * Specifies the tsconfig.json file that will be used for compilation. Equivalent to the \"project\" argument for the 'tsc' and 'tslint' command line tools.\n *\n * The default value is \"./tsconfig.json\"\n */\n project?: string;\n\n /**\n * Configures additional file types that should be copied into the TypeScript compiler's emit folders, for example\n * so that these files can be resolved by import statements.\n */\n staticAssetsToCopy?: IStaticAssetsCopyConfiguration;\n}\n\n/**\n * @beta\n */\nexport interface IPartialTsconfigCompilerOptions {\n outDir?: string;\n}\n\n/**\n * @beta\n */\nexport interface IPartialTsconfig {\n compilerOptions?: IPartialTsconfigCompilerOptions;\n}\n\n/**\n * @beta\n */\nexport interface IChangedFilesHookOptions {\n program: TTypescript.Program;\n changedFiles?: ReadonlySet<TTypescript.SourceFile>;\n}\n\n/**\n * @beta\n */\nexport interface ITypeScriptPluginAccessor {\n readonly onChangedFilesHook: SyncHook<IChangedFilesHookOptions>;\n}\n\nlet _typeScriptConfigurationFileLoader: ConfigurationFile<ITypeScriptConfigurationJson> | undefined;\nconst _typeScriptConfigurationFilePromiseCache: Map<\n string,\n Promise<ITypeScriptConfigurationJson | undefined>\n> = new Map();\n\n/**\n * @beta\n */\nexport async function loadTypeScriptConfigurationFileAsync(\n heftConfiguration: HeftConfiguration,\n terminal: ITerminal\n): Promise<ITypeScriptConfigurationJson | undefined> {\n const buildFolderPath: string = heftConfiguration.buildFolderPath;\n\n // Check the cache first\n let typescriptConfigurationFilePromise: Promise<ITypeScriptConfigurationJson | undefined> | undefined =\n _typeScriptConfigurationFilePromiseCache.get(buildFolderPath);\n\n if (!typescriptConfigurationFilePromise) {\n // Ensure that the file loader has been initialized.\n if (!_typeScriptConfigurationFileLoader) {\n _typeScriptConfigurationFileLoader = new ConfigurationFile<ITypeScriptConfigurationJson>({\n projectRelativeFilePath: 'config/typescript.json',\n jsonSchemaObject: typescriptConfigSchema,\n propertyInheritance: {\n staticAssetsToCopy: {\n // When merging objects, arrays will be automatically appended\n inheritanceType: InheritanceType.merge\n }\n }\n });\n }\n\n typescriptConfigurationFilePromise =\n _typeScriptConfigurationFileLoader.tryLoadConfigurationFileForProjectAsync(\n terminal,\n buildFolderPath,\n heftConfiguration.rigConfig\n );\n _typeScriptConfigurationFilePromiseCache.set(buildFolderPath, typescriptConfigurationFilePromise);\n }\n\n return await typescriptConfigurationFilePromise;\n}\n\nlet _partialTsconfigFileLoader: ConfigurationFile<IPartialTsconfig> | undefined;\nconst _partialTsconfigFilePromiseCache: Map<string, Promise<IPartialTsconfig | undefined>> = new Map();\n\nfunction getTsconfigFilePath(\n heftConfiguration: HeftConfiguration,\n typeScriptConfigurationJson?: ITypeScriptConfigurationJson\n): string {\n return Path.convertToSlashes(\n // Use path.resolve because the path can start with `./` or `../`\n path.resolve(heftConfiguration.buildFolderPath, typeScriptConfigurationJson?.project || './tsconfig.json')\n );\n}\n\n/**\n * @beta\n */\nexport async function loadPartialTsconfigFileAsync(\n heftConfiguration: HeftConfiguration,\n terminal: ITerminal,\n typeScriptConfigurationJson: ITypeScriptConfigurationJson | undefined\n): Promise<IPartialTsconfig | undefined> {\n const buildFolderPath: string = heftConfiguration.buildFolderPath;\n\n // Check the cache first\n let partialTsconfigFilePromise: Promise<IPartialTsconfig | undefined> | undefined =\n _partialTsconfigFilePromiseCache.get(buildFolderPath);\n\n if (!partialTsconfigFilePromise) {\n // We don't want to load the tsconfig.json file through the rig, but we do want to take\n // advantage of the extends functionality that ConfigurationFile provides. So we'll\n // check to see if the file exists and exit early if not.\n\n const tsconfigFilePath: string = getTsconfigFilePath(heftConfiguration, typeScriptConfigurationJson);\n terminal.writeVerboseLine(`Looking for tsconfig at ${tsconfigFilePath}`);\n const tsconfigExists: boolean = await FileSystem.existsAsync(tsconfigFilePath);\n if (!tsconfigExists) {\n partialTsconfigFilePromise = Promise.resolve(undefined);\n } else {\n // Ensure that the file loader has been initialized.\n if (!_partialTsconfigFileLoader) {\n _partialTsconfigFileLoader = new ConfigurationFile<IPartialTsconfig>({\n projectRelativeFilePath: typeScriptConfigurationJson?.project || 'tsconfig.json',\n jsonSchemaObject: anythingSchema,\n propertyInheritance: {\n compilerOptions: {\n inheritanceType: InheritanceType.merge\n }\n },\n jsonPathMetadata: {\n '$.compilerOptions.outDir': {\n pathResolutionMethod: PathResolutionMethod.resolvePathRelativeToConfigurationFile\n }\n }\n });\n }\n\n partialTsconfigFilePromise = _partialTsconfigFileLoader.loadConfigurationFileForProjectAsync(\n terminal,\n buildFolderPath,\n heftConfiguration.rigConfig\n );\n }\n _partialTsconfigFilePromiseCache.set(buildFolderPath, partialTsconfigFilePromise);\n }\n\n return await partialTsconfigFilePromise;\n}\n\nexport default class TypeScriptPlugin implements IHeftTaskPlugin {\n public accessor: ITypeScriptPluginAccessor = {\n onChangedFilesHook: new SyncHook<IChangedFilesHookOptions>(['changedFilesHookOptions'])\n };\n\n public apply(taskSession: IHeftTaskSession, heftConfiguration: HeftConfiguration): void {\n taskSession.hooks.registerFileOperations.tapPromise(\n PLUGIN_NAME,\n async (fileOperations: IHeftTaskFileOperations): Promise<IHeftTaskFileOperations> => {\n // TODO: We should consider maybe only doing one copy of static assets and pointing\n // all source files to this set of static assets. This would allow us to avoid\n // having to copy the static assets multiple times, increasing build times and\n // package size.\n for (const copyOperation of await this._getStaticAssetCopyOperationsAsync(\n taskSession,\n heftConfiguration\n )) {\n fileOperations.copyOperations.add(copyOperation);\n }\n\n return fileOperations;\n }\n );\n\n taskSession.hooks.run.tapPromise(PLUGIN_NAME, async (runOptions: IHeftTaskRunHookOptions) => {\n const builder: TypeScriptBuilder | false = await this._getTypeScriptBuilderAsync(\n taskSession,\n heftConfiguration\n );\n if (builder) {\n await builder.invokeAsync();\n }\n });\n\n let incrementalBuilder: TypeScriptBuilder | undefined | false;\n taskSession.hooks.runIncremental.tapPromise(\n PLUGIN_NAME,\n async (runIncrementalOptions: IHeftTaskRunIncrementalHookOptions) => {\n if (incrementalBuilder === undefined) {\n // eslint-disable-next-line require-atomic-updates\n incrementalBuilder = await this._getTypeScriptBuilderAsync(taskSession, heftConfiguration);\n }\n\n if (incrementalBuilder) {\n await incrementalBuilder.invokeAsync(runIncrementalOptions.requestRun);\n }\n }\n );\n }\n\n private async _getStaticAssetCopyOperationsAsync(\n taskSession: IHeftTaskSession,\n heftConfiguration: HeftConfiguration\n ): Promise<ICopyOperation[]> {\n const typeScriptConfiguration: ITypeScriptConfigurationJson | undefined =\n await loadTypeScriptConfigurationFileAsync(heftConfiguration, taskSession.logger.terminal);\n\n // We only care about the copy if static assets were specified.\n const copyOperations: ICopyOperation[] = [];\n if (\n typeScriptConfiguration?.staticAssetsToCopy?.fileExtensions?.length ||\n typeScriptConfiguration?.staticAssetsToCopy?.includeGlobs?.length ||\n typeScriptConfiguration?.staticAssetsToCopy?.excludeGlobs?.length\n ) {\n const destinationFolderPaths: Set<string> = new Set<string>();\n\n // Add the output folder and all additional module kind output folders as destinations\n const tsconfigOutDir: string | undefined = await this._getTsconfigOutDirAsync(\n taskSession,\n heftConfiguration,\n typeScriptConfiguration\n );\n if (tsconfigOutDir) {\n destinationFolderPaths.add(tsconfigOutDir);\n }\n for (const emitModule of typeScriptConfiguration?.additionalModuleKindsToEmit || []) {\n destinationFolderPaths.add(`${heftConfiguration.buildFolderPath}/${emitModule.outFolderName}`);\n }\n\n copyOperations.push({\n ...typeScriptConfiguration?.staticAssetsToCopy,\n\n // For now - these may need to be revised later\n sourcePath: path.resolve(heftConfiguration.buildFolderPath, 'src'),\n destinationFolders: Array.from(destinationFolderPaths),\n flatten: false,\n hardlink: false\n });\n }\n return copyOperations;\n }\n\n private async _getTypeScriptBuilderAsync(\n taskSession: IHeftTaskSession,\n heftConfiguration: HeftConfiguration\n ): Promise<TypeScriptBuilder | false> {\n const terminal: ITerminal = taskSession.logger.terminal;\n\n const typeScriptConfigurationJson: ITypeScriptConfigurationJson | undefined =\n await loadTypeScriptConfigurationFileAsync(heftConfiguration, terminal);\n\n const partialTsconfigFile: IPartialTsconfig | undefined = await loadPartialTsconfigFileAsync(\n heftConfiguration,\n terminal,\n typeScriptConfigurationJson\n );\n\n if (!partialTsconfigFile) {\n // There is no tsconfig file, we can exit early\n // This check may need watch mode to break on tsconfig addition/deletion\n return false;\n }\n\n const typeScriptToolPath: string = await heftConfiguration.rigPackageResolver.resolvePackageAsync(\n 'typescript',\n terminal\n );\n\n // Build out the configuration\n const typeScriptBuilderConfiguration: ITypeScriptBuilderConfiguration = {\n buildFolderPath: heftConfiguration.buildFolderPath,\n // Build metadata is just another build output, but we put it in the temp folder because it will\n // usually be discarded when published.\n buildMetadataFolderPath: taskSession.tempFolderPath,\n typeScriptToolPath: typeScriptToolPath,\n\n buildProjectReferences: typeScriptConfigurationJson?.buildProjectReferences,\n\n useTranspilerWorker: typeScriptConfigurationJson?.useTranspilerWorker,\n\n onlyResolveSymlinksInNodeModules: typeScriptConfigurationJson?.onlyResolveSymlinksInNodeModules,\n\n tsconfigPath: getTsconfigFilePath(heftConfiguration, typeScriptConfigurationJson),\n additionalModuleKindsToEmit: typeScriptConfigurationJson?.additionalModuleKindsToEmit,\n emitCjsExtensionForCommonJS: !!typeScriptConfigurationJson?.emitCjsExtensionForCommonJS,\n emitMjsExtensionForESModule: !!typeScriptConfigurationJson?.emitMjsExtensionForESModule,\n scopedLogger: taskSession.logger,\n emitChangedFilesCallback: (\n program: TTypescript.Program,\n changedFiles?: Set<TTypescript.SourceFile>\n ) => {\n // Provide the typescript program dependent plugins\n if (this.accessor.onChangedFilesHook.isUsed()) {\n this.accessor.onChangedFilesHook.call({ program, changedFiles });\n }\n }\n };\n\n // Run the builder\n const typeScriptBuilder: TypeScriptBuilder = new TypeScriptBuilder(typeScriptBuilderConfiguration);\n return typeScriptBuilder;\n }\n\n private async _getTsconfigOutDirAsync(\n taskSession: IHeftTaskSession,\n heftConfiguration: HeftConfiguration,\n typeScriptConfiguration: ITypeScriptConfigurationJson | undefined\n ): Promise<string | undefined> {\n const partialTsconfigFile: IPartialTsconfig | undefined = await loadPartialTsconfigFileAsync(\n heftConfiguration,\n taskSession.logger.terminal,\n typeScriptConfiguration\n );\n return partialTsconfigFile?.compilerOptions?.outDir;\n }\n}\n"]}
|
|
@@ -3,6 +3,15 @@ export interface IExtendedSolutionBuilder extends TTypescript.SolutionBuilder<TT
|
|
|
3
3
|
getBuildOrder(): readonly string[];
|
|
4
4
|
invalidateProject(configFilePath: string, mode: 0 | 1 | 2): void;
|
|
5
5
|
}
|
|
6
|
+
export interface ITypeScriptNodeSystem extends TTypescript.System {
|
|
7
|
+
/**
|
|
8
|
+
* https://github.com/microsoft/TypeScript/blob/d85767abfd83880cea17cea70f9913e9c4496dcc/src/compiler/sys.ts#L1438
|
|
9
|
+
*/
|
|
10
|
+
getAccessibleFileSystemEntries?: (folderPath: string) => {
|
|
11
|
+
files: string[];
|
|
12
|
+
directories: string[];
|
|
13
|
+
};
|
|
14
|
+
}
|
|
6
15
|
export interface IExtendedTypeScript {
|
|
7
16
|
/**
|
|
8
17
|
* https://github.com/microsoft/TypeScript/blob/5f597e69b2e3b48d788cb548df40bcb703c8adb1/src/compiler/performance.ts#L3
|
|
@@ -39,6 +48,7 @@ export interface IExtendedTypeScript {
|
|
|
39
48
|
}[];
|
|
40
49
|
getNewLineCharacter(compilerOptions: TTypescript.CompilerOptions): string;
|
|
41
50
|
createCompilerHost(options: TTypescript.CompilerOptions, setParentNodes?: boolean, system?: TTypescript.System): TTypescript.CompilerHost;
|
|
51
|
+
createCompilerHostWorker(options: TTypescript.CompilerOptions, setParentNodes?: boolean, system?: TTypescript.System): TTypescript.CompilerHost;
|
|
42
52
|
/**
|
|
43
53
|
* https://github.com/microsoft/TypeScript/blob/782c09d783e006a697b4ba6d1e7ec2f718ce8393/src/compiler/utilities.ts#L6540
|
|
44
54
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TypeScriptInternals.d.ts","sourceRoot":"","sources":["../../src/internalTypings/TypeScriptInternals.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,KAAK,WAAW,MAAM,YAAY,CAAC;AAE/C,MAAM,WAAW,wBACf,SAAQ,WAAW,CAAC,eAAe,CAAC,WAAW,CAAC,wCAAwC,CAAC;IACzF,aAAa,IAAI,SAAS,MAAM,EAAE,CAAC;IACnC,iBAAiB,CAAC,cAAc,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC;CAClE;AAED,MAAM,WAAW,mBAAmB;IAClC;;OAEG;IACH,WAAW,EAAE;QACX;;WAEG;QACH,OAAO,IAAI,IAAI,CAAC;QAEhB;;WAEG;QACH,MAAM,IAAI,IAAI,CAAC;QAEf;;WAEG;QACH,IAAI,CAAC,gBAAgB,EAAE,MAAM,GAAG,IAAI,CAAC;QAErC;;WAEG;QACH,OAAO,CAAC,WAAW,EAAE,MAAM,EAAE,aAAa,CAAC,EAAE,MAAM,EAAE,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;QAEjF;;WAEG;QACH,WAAW,CAAC,WAAW,EAAE,MAAM,GAAG,MAAM,CAAC;QAEzC;;WAEG;QACH,QAAQ,CAAC,WAAW,EAAE,MAAM,GAAG,MAAM,CAAC;KACvC,CAAC;IAEF,mCAAmC,EAAE;QACnC,IAAI,EAAE,MAAM,WAAW,CAAC,eAAe,CAAC;QAExC,oBAAoB,EAAE,GAAG,CAAC;KAC3B,EAAE,CAAC;IAEJ,mBAAmB,CAAC,eAAe,EAAE,WAAW,CAAC,eAAe,GAAG,MAAM,CAAC;IAE1E,kBAAkB,CAChB,OAAO,EAAE,WAAW,CAAC,eAAe,EACpC,cAAc,CAAC,EAAE,OAAO,EACxB,MAAM,CAAC,EAAE,WAAW,CAAC,MAAM,GAC1B,WAAW,CAAC,YAAY,CAAC;IAE5B;;OAEG;IACH,UAAU,CACR,IAAI,EAAE,MAAM,EACZ,UAAU,EAAE,aAAa,CAAC,MAAM,CAAC,GAAG,SAAS,EAC7C,QAAQ,EAAE,aAAa,CAAC,MAAM,CAAC,GAAG,SAAS,EAC3C,QAAQ,EAAE,aAAa,CAAC,MAAM,CAAC,GAAG,SAAS,EAC3C,yBAAyB,EAAE,OAAO,EAClC,gBAAgB,EAAE,MAAM,EACxB,KAAK,EAAE,MAAM,GAAG,SAAS,EACzB,oBAAoB,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK;QACtC,QAAQ,CAAC,KAAK,EAAE,aAAa,CAAC,MAAM,CAAC,CAAC;QACtC,QAAQ,CAAC,WAAW,EAAE,aAAa,CAAC,MAAM,CAAC,CAAC;KAC7C,EACD,QAAQ,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,MAAM,EAClC,eAAe,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,OAAO,GACzC,MAAM,EAAE,CAAC;IAEZ,WAAW,EAAE;QAGX,uCAAuC,EAAE,WAAW,CAAC,iBAAiB,CAAC;QAIvE,wCAAwC,EAAE,WAAW,CAAC,iBAAiB,CAAC;QAIxE,+EAA+E,EAAE,WAAW,CAAC,iBAAiB,CAAC;QAI/G,6FAA6F,EAAE,WAAW,CAAC,iBAAiB,CAAC;KAC9H,CAAC;CACH;AAED,MAAM,MAAM,kBAAkB,GAAG,OAAO,WAAW,GAAG,mBAAmB,CAAC;AAE1E,MAAM,MAAM,sBAAsB,GAAG,WAAW,CAAC,cAAc,GAAG;IAChE;;OAEG;IACH,KAAK,CAAC,EAAE;QAAE,eAAe,EAAE,GAAG,CAAC,MAAM,CAAC,CAAA;KAAE,CAAC;IACzC;;OAEG;IACH,QAAQ,IAAI;QAAE,eAAe,EAAE,GAAG,CAAC,MAAM,CAAC,CAAA;KAAE,CAAC;CAC9C,CAAC"}
|
|
1
|
+
{"version":3,"file":"TypeScriptInternals.d.ts","sourceRoot":"","sources":["../../src/internalTypings/TypeScriptInternals.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TypeScriptInternals.js","sourceRoot":"","sources":["../../src/internalTypings/TypeScriptInternals.ts"],"names":[],"mappings":";AAAA,4FAA4F;AAC5F,2DAA2D","sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.\n// See LICENSE in the project root for license information.\n\nimport type * as TTypescript from 'typescript';\n\nexport interface IExtendedSolutionBuilder\n extends TTypescript.SolutionBuilder<TTypescript.EmitAndSemanticDiagnosticsBuilderProgram> {\n getBuildOrder(): readonly string[];\n invalidateProject(configFilePath: string, mode: 0 | 1 | 2): void;\n}\n\nexport interface IExtendedTypeScript {\n /**\n * https://github.com/microsoft/TypeScript/blob/5f597e69b2e3b48d788cb548df40bcb703c8adb1/src/compiler/performance.ts#L3\n */\n performance: {\n /**\n * https://github.com/microsoft/TypeScript/blob/5f597e69b2e3b48d788cb548df40bcb703c8adb1/src/compiler/performance.ts#L119-L121\n */\n disable(): void;\n\n /**\n * https://github.com/microsoft/TypeScript/blob/5f597e69b2e3b48d788cb548df40bcb703c8adb1/src/compiler/performance.ts#L110-L116\n */\n enable(): void;\n\n /**\n * https://github.com/microsoft/TypeScript/blob/5f597e69b2e3b48d788cb548df40bcb703c8adb1/src/compiler/performance.ts#L55-L61\n */\n mark(performanceMaker: string): void;\n\n /**\n * https://github.com/microsoft/TypeScript/blob/5f597e69b2e3b48d788cb548df40bcb703c8adb1/src/compiler/performance.ts#L72-L78\n */\n measure(measureName: string, startMarkName?: string, endMarkName?: string): void;\n\n /**\n * https://github.com/microsoft/TypeScript/blob/5f597e69b2e3b48d788cb548df40bcb703c8adb1/src/compiler/performance.ts#L94-L96\n */\n getDuration(measureName: string): number;\n\n /**\n * https://github.com/microsoft/TypeScript/blob/5f597e69b2e3b48d788cb548df40bcb703c8adb1/src/compiler/performance.ts#L85-L87\n */\n getCount(measureName: string): number;\n };\n\n transpileOptionValueCompilerOptions: {\n name: keyof TTypescript.CompilerOptions;\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n transpileOptionValue: any;\n }[];\n\n getNewLineCharacter(compilerOptions: TTypescript.CompilerOptions): string;\n\n createCompilerHost(\n options: TTypescript.CompilerOptions,\n setParentNodes?: boolean,\n system?: TTypescript.System\n ): TTypescript.CompilerHost;\n\n /**\n * https://github.com/microsoft/TypeScript/blob/782c09d783e006a697b4ba6d1e7ec2f718ce8393/src/compiler/utilities.ts#L6540\n */\n matchFiles(\n path: string,\n extensions: ReadonlyArray<string> | undefined,\n excludes: ReadonlyArray<string> | undefined,\n includes: ReadonlyArray<string> | undefined,\n useCaseSensitiveFileNames: boolean,\n currentDirectory: string,\n depth: number | undefined,\n getFileSystemEntries: (path: string) => {\n readonly files: ReadonlyArray<string>;\n readonly directories: ReadonlyArray<string>;\n },\n realpath: (path: string) => string,\n directoryExists: (path: string) => boolean\n ): string[];\n\n Diagnostics: {\n // https://github.com/microsoft/TypeScript/blob/5f597e69b2e3b48d788cb548df40bcb703c8adb1/src/compiler/diagnosticMessages.json#L4252-L4255\n // eslint-disable-next-line @typescript-eslint/naming-convention\n Found_1_error_Watching_for_file_changes: TTypescript.DiagnosticMessage;\n\n // https://github.com/microsoft/TypeScript/blob/5f597e69b2e3b48d788cb548df40bcb703c8adb1/src/compiler/diagnosticMessages.json#L4256-L4259\n // eslint-disable-next-line @typescript-eslint/naming-convention\n Found_0_errors_Watching_for_file_changes: TTypescript.DiagnosticMessage;\n\n // https://github.com/microsoft/TypeScript/blob/2428ade1a91248e847f3e1561e31a9426650efee/src/compiler/diagnosticMessages.json#L2252\n // eslint-disable-next-line @typescript-eslint/naming-convention\n Property_0_has_no_initializer_and_is_not_definitely_assigned_in_the_constructor: TTypescript.DiagnosticMessage;\n\n // https://github.com/microsoft/TypeScript/blob/2428ade1a91248e847f3e1561e31a9426650efee/src/compiler/diagnosticMessages.json#L4920\n // eslint-disable-next-line @typescript-eslint/naming-convention\n Element_implicitly_has_an_any_type_because_expression_of_type_0_can_t_be_used_to_index_type_1: TTypescript.DiagnosticMessage;\n };\n}\n\nexport type ExtendedTypeScript = typeof TTypescript & IExtendedTypeScript;\n\nexport type ExtendedBuilderProgram = TTypescript.BuilderProgram & {\n /**\n * Typescript 5.6+\n */\n state?: { changedFilesSet: Set<string> };\n /**\n * Typescript < 5.6\n */\n getState(): { changedFilesSet: Set<string> };\n};\n"]}
|
|
1
|
+
{"version":3,"file":"TypeScriptInternals.js","sourceRoot":"","sources":["../../src/internalTypings/TypeScriptInternals.ts"],"names":[],"mappings":";AAAA,4FAA4F;AAC5F,2DAA2D","sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.\n// See LICENSE in the project root for license information.\n\nimport type * as TTypescript from 'typescript';\n\nexport interface IExtendedSolutionBuilder\n extends TTypescript.SolutionBuilder<TTypescript.EmitAndSemanticDiagnosticsBuilderProgram> {\n getBuildOrder(): readonly string[];\n invalidateProject(configFilePath: string, mode: 0 | 1 | 2): void;\n}\n\nexport interface ITypeScriptNodeSystem extends TTypescript.System {\n /**\n * https://github.com/microsoft/TypeScript/blob/d85767abfd83880cea17cea70f9913e9c4496dcc/src/compiler/sys.ts#L1438\n */\n getAccessibleFileSystemEntries?: (folderPath: string) => {\n files: string[];\n directories: string[];\n };\n}\n\nexport interface IExtendedTypeScript {\n /**\n * https://github.com/microsoft/TypeScript/blob/5f597e69b2e3b48d788cb548df40bcb703c8adb1/src/compiler/performance.ts#L3\n */\n performance: {\n /**\n * https://github.com/microsoft/TypeScript/blob/5f597e69b2e3b48d788cb548df40bcb703c8adb1/src/compiler/performance.ts#L119-L121\n */\n disable(): void;\n\n /**\n * https://github.com/microsoft/TypeScript/blob/5f597e69b2e3b48d788cb548df40bcb703c8adb1/src/compiler/performance.ts#L110-L116\n */\n enable(): void;\n\n /**\n * https://github.com/microsoft/TypeScript/blob/5f597e69b2e3b48d788cb548df40bcb703c8adb1/src/compiler/performance.ts#L55-L61\n */\n mark(performanceMaker: string): void;\n\n /**\n * https://github.com/microsoft/TypeScript/blob/5f597e69b2e3b48d788cb548df40bcb703c8adb1/src/compiler/performance.ts#L72-L78\n */\n measure(measureName: string, startMarkName?: string, endMarkName?: string): void;\n\n /**\n * https://github.com/microsoft/TypeScript/blob/5f597e69b2e3b48d788cb548df40bcb703c8adb1/src/compiler/performance.ts#L94-L96\n */\n getDuration(measureName: string): number;\n\n /**\n * https://github.com/microsoft/TypeScript/blob/5f597e69b2e3b48d788cb548df40bcb703c8adb1/src/compiler/performance.ts#L85-L87\n */\n getCount(measureName: string): number;\n };\n\n transpileOptionValueCompilerOptions: {\n name: keyof TTypescript.CompilerOptions;\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n transpileOptionValue: any;\n }[];\n\n getNewLineCharacter(compilerOptions: TTypescript.CompilerOptions): string;\n\n createCompilerHost(\n options: TTypescript.CompilerOptions,\n setParentNodes?: boolean,\n system?: TTypescript.System\n ): TTypescript.CompilerHost;\n\n createCompilerHostWorker(\n options: TTypescript.CompilerOptions,\n setParentNodes?: boolean,\n system?: TTypescript.System\n ): TTypescript.CompilerHost;\n\n /**\n * https://github.com/microsoft/TypeScript/blob/782c09d783e006a697b4ba6d1e7ec2f718ce8393/src/compiler/utilities.ts#L6540\n */\n matchFiles(\n path: string,\n extensions: ReadonlyArray<string> | undefined,\n excludes: ReadonlyArray<string> | undefined,\n includes: ReadonlyArray<string> | undefined,\n useCaseSensitiveFileNames: boolean,\n currentDirectory: string,\n depth: number | undefined,\n getFileSystemEntries: (path: string) => {\n readonly files: ReadonlyArray<string>;\n readonly directories: ReadonlyArray<string>;\n },\n realpath: (path: string) => string,\n directoryExists: (path: string) => boolean\n ): string[];\n\n Diagnostics: {\n // https://github.com/microsoft/TypeScript/blob/5f597e69b2e3b48d788cb548df40bcb703c8adb1/src/compiler/diagnosticMessages.json#L4252-L4255\n // eslint-disable-next-line @typescript-eslint/naming-convention\n Found_1_error_Watching_for_file_changes: TTypescript.DiagnosticMessage;\n\n // https://github.com/microsoft/TypeScript/blob/5f597e69b2e3b48d788cb548df40bcb703c8adb1/src/compiler/diagnosticMessages.json#L4256-L4259\n // eslint-disable-next-line @typescript-eslint/naming-convention\n Found_0_errors_Watching_for_file_changes: TTypescript.DiagnosticMessage;\n\n // https://github.com/microsoft/TypeScript/blob/2428ade1a91248e847f3e1561e31a9426650efee/src/compiler/diagnosticMessages.json#L2252\n // eslint-disable-next-line @typescript-eslint/naming-convention\n Property_0_has_no_initializer_and_is_not_definitely_assigned_in_the_constructor: TTypescript.DiagnosticMessage;\n\n // https://github.com/microsoft/TypeScript/blob/2428ade1a91248e847f3e1561e31a9426650efee/src/compiler/diagnosticMessages.json#L4920\n // eslint-disable-next-line @typescript-eslint/naming-convention\n Element_implicitly_has_an_any_type_because_expression_of_type_0_can_t_be_used_to_index_type_1: TTypescript.DiagnosticMessage;\n };\n}\n\nexport type ExtendedTypeScript = typeof TTypescript & IExtendedTypeScript;\n\nexport type ExtendedBuilderProgram = TTypescript.BuilderProgram & {\n /**\n * Typescript 5.6+\n */\n state?: { changedFilesSet: Set<string> };\n /**\n * Typescript < 5.6\n */\n getState(): { changedFilesSet: Set<string> };\n};\n"]}
|
|
@@ -37,6 +37,11 @@
|
|
|
37
37
|
}
|
|
38
38
|
},
|
|
39
39
|
|
|
40
|
+
"onlyResolveSymlinksInNodeModules": {
|
|
41
|
+
"description": "If true, the TypeScript compiler will only resolve symlinks to their targets if the links are in a node_modules folder. This significantly reduces file system operations in typical usage.",
|
|
42
|
+
"type": "boolean"
|
|
43
|
+
},
|
|
44
|
+
|
|
40
45
|
"emitCjsExtensionForCommonJS": {
|
|
41
46
|
"description": "If true, emit CommonJS module output to the folder specified in the tsconfig \"outDir\" compiler option with the .cjs extension alongside (or instead of, if TSConfig specifies CommonJS) the default compilation output.",
|
|
42
47
|
"type": "boolean"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rushstack/heft-typescript-plugin",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.1",
|
|
4
4
|
"description": "Heft plugin for TypeScript",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -12,23 +12,23 @@
|
|
|
12
12
|
"types": "dist/heft-typescript-plugin.d.ts",
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"peerDependencies": {
|
|
15
|
-
"@rushstack/heft": "0.68.
|
|
15
|
+
"@rushstack/heft": "0.68.8"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@types/tapable": "1.0.6",
|
|
19
19
|
"semver": "~7.5.4",
|
|
20
20
|
"tapable": "1.1.3",
|
|
21
|
-
"@rushstack/node-core-library": "5.
|
|
22
|
-
"@rushstack/heft-config-file": "0.15.
|
|
21
|
+
"@rushstack/node-core-library": "5.10.0",
|
|
22
|
+
"@rushstack/heft-config-file": "0.15.9"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@rushstack/heft-node-rig": "2.6.
|
|
25
|
+
"@rushstack/heft-node-rig": "2.6.41",
|
|
26
26
|
"@types/node": "18.17.15",
|
|
27
27
|
"@types/semver": "7.5.0",
|
|
28
28
|
"typescript": "~5.4.2",
|
|
29
29
|
"local-eslint-config": "1.0.0",
|
|
30
|
-
"@rushstack/terminal": "0.14.
|
|
31
|
-
"@rushstack/heft": "0.68.
|
|
30
|
+
"@rushstack/terminal": "0.14.3",
|
|
31
|
+
"@rushstack/heft": "0.68.8"
|
|
32
32
|
},
|
|
33
33
|
"scripts": {
|
|
34
34
|
"build": "heft test --clean",
|