@storm-software/workspace-tools 1.60.13 → 1.60.14
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.md +12 -0
- package/index.js +201 -202
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +201 -202
- package/src/executors/tsup-browser/executor.js +201 -202
- package/src/executors/tsup-neutral/executor.js +201 -202
- package/src/executors/tsup-node/executor.js +201 -202
- package/src/utils/index.js +114 -115
package/index.js
CHANGED
|
@@ -9965,7 +9965,7 @@ var require_source_map_support = __commonJS({
|
|
|
9965
9965
|
var require_typescript = __commonJS({
|
|
9966
9966
|
"node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/typescript.js"(exports2, module2) {
|
|
9967
9967
|
"use strict";
|
|
9968
|
-
var
|
|
9968
|
+
var ts8 = (() => {
|
|
9969
9969
|
var __defProp4 = Object.defineProperty;
|
|
9970
9970
|
var __getOwnPropNames3 = Object.getOwnPropertyNames;
|
|
9971
9971
|
var __esm2 = (fn6, res) => function __init() {
|
|
@@ -13096,7 +13096,7 @@ ${lanes.join("\n")}
|
|
|
13096
13096
|
function isEnabled() {
|
|
13097
13097
|
return enabled;
|
|
13098
13098
|
}
|
|
13099
|
-
function enable(system =
|
|
13099
|
+
function enable(system = sys2) {
|
|
13100
13100
|
var _a3;
|
|
13101
13101
|
if (!enabled) {
|
|
13102
13102
|
enabled = true;
|
|
@@ -16313,21 +16313,21 @@ ${lanes.join("\n")}
|
|
|
16313
16313
|
}
|
|
16314
16314
|
}
|
|
16315
16315
|
}
|
|
16316
|
-
function patchWriteFileEnsuringDirectory2(
|
|
16317
|
-
const originalWriteFile =
|
|
16318
|
-
|
|
16316
|
+
function patchWriteFileEnsuringDirectory2(sys22) {
|
|
16317
|
+
const originalWriteFile = sys22.writeFile;
|
|
16318
|
+
sys22.writeFile = (path15, data, writeBom) => writeFileEnsuringDirectories(
|
|
16319
16319
|
path15,
|
|
16320
16320
|
data,
|
|
16321
16321
|
!!writeBom,
|
|
16322
|
-
(path22, data2, writeByteOrderMark) => originalWriteFile.call(
|
|
16323
|
-
(path22) =>
|
|
16324
|
-
(path22) =>
|
|
16322
|
+
(path22, data2, writeByteOrderMark) => originalWriteFile.call(sys22, path22, data2, writeByteOrderMark),
|
|
16323
|
+
(path22) => sys22.createDirectory(path22),
|
|
16324
|
+
(path22) => sys22.directoryExists(path22)
|
|
16325
16325
|
);
|
|
16326
16326
|
}
|
|
16327
16327
|
function setSys2(s) {
|
|
16328
|
-
|
|
16328
|
+
sys2 = s;
|
|
16329
16329
|
}
|
|
16330
|
-
var FileWatcherEventKind2, PollingInterval2, missingFileModifiedTime2, defaultChunkLevels, pollingChunkSize, unchangedPollThresholds2, ignoredPaths2, curSysLog, FileSystemEntryKind2,
|
|
16330
|
+
var FileWatcherEventKind2, PollingInterval2, missingFileModifiedTime2, defaultChunkLevels, pollingChunkSize, unchangedPollThresholds2, ignoredPaths2, curSysLog, FileSystemEntryKind2, sys2;
|
|
16331
16331
|
var init_sys = __esm2({
|
|
16332
16332
|
"src/compiler/sys.ts"() {
|
|
16333
16333
|
"use strict";
|
|
@@ -16355,7 +16355,7 @@ ${lanes.join("\n")}
|
|
|
16355
16355
|
FileSystemEntryKind22[FileSystemEntryKind22["Directory"] = 1] = "Directory";
|
|
16356
16356
|
return FileSystemEntryKind22;
|
|
16357
16357
|
})(FileSystemEntryKind2 || {});
|
|
16358
|
-
|
|
16358
|
+
sys2 = (() => {
|
|
16359
16359
|
const byteOrderMarkIndicator = "\uFEFF";
|
|
16360
16360
|
function getNodeSystem() {
|
|
16361
16361
|
const nativePattern = /^native |^\([^)]+\)$|^(internal[\\/]|[a-zA-Z0-9_\s]+(\.js)?$)/;
|
|
@@ -16798,23 +16798,23 @@ ${lanes.join("\n")}
|
|
|
16798
16798
|
return hash.digest("hex");
|
|
16799
16799
|
}
|
|
16800
16800
|
}
|
|
16801
|
-
let
|
|
16801
|
+
let sys22;
|
|
16802
16802
|
if (isNodeLikeSystem()) {
|
|
16803
|
-
|
|
16803
|
+
sys22 = getNodeSystem();
|
|
16804
16804
|
}
|
|
16805
|
-
if (
|
|
16806
|
-
patchWriteFileEnsuringDirectory2(
|
|
16805
|
+
if (sys22) {
|
|
16806
|
+
patchWriteFileEnsuringDirectory2(sys22);
|
|
16807
16807
|
}
|
|
16808
|
-
return
|
|
16808
|
+
return sys22;
|
|
16809
16809
|
})();
|
|
16810
|
-
if (
|
|
16811
|
-
setCustomPollingValues(
|
|
16810
|
+
if (sys2 && sys2.getEnvironmentVariable) {
|
|
16811
|
+
setCustomPollingValues(sys2);
|
|
16812
16812
|
Debug.setAssertionLevel(
|
|
16813
|
-
/^development$/i.test(
|
|
16813
|
+
/^development$/i.test(sys2.getEnvironmentVariable("NODE_ENV")) ? 1 : 0
|
|
16814
16814
|
/* None */
|
|
16815
16815
|
);
|
|
16816
16816
|
}
|
|
16817
|
-
if (
|
|
16817
|
+
if (sys2 && sys2.debugMode) {
|
|
16818
16818
|
Debug.isDebugging = true;
|
|
16819
16819
|
}
|
|
16820
16820
|
}
|
|
@@ -21787,7 +21787,7 @@ ${lanes.join("\n")}
|
|
|
21787
21787
|
function getNodeFlags(node) {
|
|
21788
21788
|
return node.flags;
|
|
21789
21789
|
}
|
|
21790
|
-
function validateLocaleAndSetLanguage(locale,
|
|
21790
|
+
function validateLocaleAndSetLanguage(locale, sys22, errors) {
|
|
21791
21791
|
const lowerCaseLocale = locale.toLowerCase();
|
|
21792
21792
|
const matchResult = /^([a-z]+)([_-]([a-z]+))?$/.exec(lowerCaseLocale);
|
|
21793
21793
|
if (!matchResult) {
|
|
@@ -21808,19 +21808,19 @@ ${lanes.join("\n")}
|
|
|
21808
21808
|
}
|
|
21809
21809
|
setUILocale(locale);
|
|
21810
21810
|
function trySetLanguageAndTerritory(language2, territory2, errors2) {
|
|
21811
|
-
const compilerFilePath = normalizePath(
|
|
21811
|
+
const compilerFilePath = normalizePath(sys22.getExecutingFilePath());
|
|
21812
21812
|
const containingDirectoryPath = getDirectoryPath(compilerFilePath);
|
|
21813
21813
|
let filePath = combinePaths(containingDirectoryPath, language2);
|
|
21814
21814
|
if (territory2) {
|
|
21815
21815
|
filePath = filePath + "-" + territory2;
|
|
21816
21816
|
}
|
|
21817
|
-
filePath =
|
|
21818
|
-
if (!
|
|
21817
|
+
filePath = sys22.resolvePath(combinePaths(filePath, "diagnosticMessages.generated.json"));
|
|
21818
|
+
if (!sys22.fileExists(filePath)) {
|
|
21819
21819
|
return false;
|
|
21820
21820
|
}
|
|
21821
21821
|
let fileContents = "";
|
|
21822
21822
|
try {
|
|
21823
|
-
fileContents =
|
|
21823
|
+
fileContents = sys22.readFile(filePath);
|
|
21824
21824
|
} catch (e3) {
|
|
21825
21825
|
if (errors2) {
|
|
21826
21826
|
errors2.push(createCompilerDiagnostic(Diagnostics.Unable_to_open_file_0, filePath));
|
|
@@ -49082,7 +49082,7 @@ ${lanes.join("\n")}
|
|
|
49082
49082
|
}
|
|
49083
49083
|
}
|
|
49084
49084
|
function parseResponseFile(fileName) {
|
|
49085
|
-
const text = tryReadFile2(fileName, readFile3 || ((fileName2) =>
|
|
49085
|
+
const text = tryReadFile2(fileName, readFile3 || ((fileName2) => sys2.readFile(fileName2)));
|
|
49086
49086
|
if (!isString(text)) {
|
|
49087
49087
|
errors.push(text);
|
|
49088
49088
|
return;
|
|
@@ -49252,7 +49252,7 @@ ${lanes.join("\n")}
|
|
|
49252
49252
|
watchOptionsToExtend
|
|
49253
49253
|
);
|
|
49254
49254
|
}
|
|
49255
|
-
function
|
|
49255
|
+
function readConfigFile3(fileName, readFile3) {
|
|
49256
49256
|
const textOrDiagnostic = tryReadFile2(fileName, readFile3);
|
|
49257
49257
|
return isString(textOrDiagnostic) ? parseConfigFileTextToJson2(fileName, textOrDiagnostic) : { config: {}, error: textOrDiagnostic };
|
|
49258
49258
|
}
|
|
@@ -49758,7 +49758,7 @@ ${lanes.join("\n")}
|
|
|
49758
49758
|
}
|
|
49759
49759
|
return value;
|
|
49760
49760
|
}
|
|
49761
|
-
function
|
|
49761
|
+
function parseJsonConfigFileContent3(json2, host, basePath, existingOptions, configFileName, resolutionStack, extraFileExtensions, extendedConfigCache, existingWatchOptions) {
|
|
49762
49762
|
return parseJsonConfigFileContentWorker(
|
|
49763
49763
|
json2,
|
|
49764
49764
|
/*sourceFile*/
|
|
@@ -131388,7 +131388,7 @@ ${lanes.join("\n")}
|
|
|
131388
131388
|
function getSourceMappingURL(mapOptions, sourceMapGenerator, filePath, sourceMapFilePath, sourceFile) {
|
|
131389
131389
|
if (mapOptions.inlineSourceMap) {
|
|
131390
131390
|
const sourceMapText = sourceMapGenerator.toString();
|
|
131391
|
-
const base64SourceMapText = base64encode(
|
|
131391
|
+
const base64SourceMapText = base64encode(sys2, sourceMapText);
|
|
131392
131392
|
return `data:application/json;base64,${base64SourceMapText}`;
|
|
131393
131393
|
}
|
|
131394
131394
|
const sourceMapFile = getBaseFileName(normalizeSlashes(Debug.checkDefined(sourceMapFilePath)));
|
|
@@ -137188,7 +137188,7 @@ ${lanes.join("\n")}
|
|
|
137188
137188
|
}
|
|
137189
137189
|
};
|
|
137190
137190
|
}
|
|
137191
|
-
function createCompilerHostWorker2(options8, setParentNodes, system =
|
|
137191
|
+
function createCompilerHostWorker2(options8, setParentNodes, system = sys2) {
|
|
137192
137192
|
const existingDirectories = /* @__PURE__ */ new Map();
|
|
137193
137193
|
const getCanonicalFileName = createGetCanonicalFileName(system.useCaseSensitiveFileNames);
|
|
137194
137194
|
function directoryExists(directoryPath) {
|
|
@@ -144092,7 +144092,7 @@ ${lanes.join("\n")}
|
|
|
144092
144092
|
}
|
|
144093
144093
|
});
|
|
144094
144094
|
function createDiagnosticReporter2(system, pretty) {
|
|
144095
|
-
const host = system ===
|
|
144095
|
+
const host = system === sys2 && sysFormatDiagnosticsHost ? sysFormatDiagnosticsHost : {
|
|
144096
144096
|
getCurrentDirectory: () => system.getCurrentDirectory(),
|
|
144097
144097
|
getNewLine: () => system.newLine,
|
|
144098
144098
|
getCanonicalFileName: createGetCanonicalFileName(system.useCaseSensitiveFileNames)
|
|
@@ -144536,7 +144536,7 @@ ${lanes.join("\n")}
|
|
|
144536
144536
|
}
|
|
144537
144537
|
return 0;
|
|
144538
144538
|
}
|
|
144539
|
-
function createWatchHost2(system =
|
|
144539
|
+
function createWatchHost2(system = sys2, reportWatchStatus2) {
|
|
144540
144540
|
const onWatchStatusChange = reportWatchStatus2 || createWatchStatusReporter2(system);
|
|
144541
144541
|
return {
|
|
144542
144542
|
onWatchStatusChange,
|
|
@@ -144653,7 +144653,7 @@ ${lanes.join("\n")}
|
|
|
144653
144653
|
now: maybeBind(system, system.now)
|
|
144654
144654
|
};
|
|
144655
144655
|
}
|
|
144656
|
-
function createWatchCompilerHost(system =
|
|
144656
|
+
function createWatchCompilerHost(system = sys2, createProgram22, reportDiagnostic, reportWatchStatus2) {
|
|
144657
144657
|
const write = (s) => system.write(s + system.newLine);
|
|
144658
144658
|
const result = createProgramHost2(system, createProgram22);
|
|
144659
144659
|
copyProperties(result, createWatchHost2(system, reportWatchStatus2));
|
|
@@ -144718,7 +144718,7 @@ ${lanes.join("\n")}
|
|
|
144718
144718
|
return host;
|
|
144719
144719
|
}
|
|
144720
144720
|
function performIncrementalCompilation2(input) {
|
|
144721
|
-
const system = input.system ||
|
|
144721
|
+
const system = input.system || sys2;
|
|
144722
144722
|
const host = input.host || (input.host = createIncrementalCompilerHost2(input.options, system));
|
|
144723
144723
|
const builderProgram = createIncrementalProgram2(input);
|
|
144724
144724
|
const exitStatus = emitFilesAndReportErrorsAndGetExitStatus2(
|
|
@@ -144736,10 +144736,10 @@ ${lanes.join("\n")}
|
|
|
144736
144736
|
"src/compiler/watch.ts"() {
|
|
144737
144737
|
"use strict";
|
|
144738
144738
|
init_ts2();
|
|
144739
|
-
sysFormatDiagnosticsHost =
|
|
144740
|
-
getCurrentDirectory: () =>
|
|
144741
|
-
getNewLine: () =>
|
|
144742
|
-
getCanonicalFileName: createGetCanonicalFileName(
|
|
144739
|
+
sysFormatDiagnosticsHost = sys2 ? {
|
|
144740
|
+
getCurrentDirectory: () => sys2.getCurrentDirectory(),
|
|
144741
|
+
getNewLine: () => sys2.newLine,
|
|
144742
|
+
getCanonicalFileName: createGetCanonicalFileName(sys2.useCaseSensitiveFileNames)
|
|
144743
144743
|
} : void 0;
|
|
144744
144744
|
screenStartingMessageCodes2 = [
|
|
144745
144745
|
Diagnostics.Starting_compilation_in_watch_mode.code,
|
|
@@ -144789,7 +144789,7 @@ ${lanes.join("\n")}
|
|
|
144789
144789
|
return void 0;
|
|
144790
144790
|
return createBuilderProgramUsingProgramBuildInfo2(buildInfo, buildInfoPath, host);
|
|
144791
144791
|
}
|
|
144792
|
-
function createIncrementalCompilerHost2(options8, system =
|
|
144792
|
+
function createIncrementalCompilerHost2(options8, system = sys2) {
|
|
144793
144793
|
const host = createCompilerHostWorker2(
|
|
144794
144794
|
options8,
|
|
144795
144795
|
/*setParentNodes*/
|
|
@@ -145595,12 +145595,12 @@ ${lanes.join("\n")}
|
|
|
145595
145595
|
host.now = maybeBind(system, system.now);
|
|
145596
145596
|
return host;
|
|
145597
145597
|
}
|
|
145598
|
-
function createSolutionBuilderHost2(system =
|
|
145598
|
+
function createSolutionBuilderHost2(system = sys2, createProgram22, reportDiagnostic, reportSolutionBuilderStatus, reportErrorSummary2) {
|
|
145599
145599
|
const host = createSolutionBuilderHostBase(system, createProgram22, reportDiagnostic, reportSolutionBuilderStatus);
|
|
145600
145600
|
host.reportErrorSummary = reportErrorSummary2;
|
|
145601
145601
|
return host;
|
|
145602
145602
|
}
|
|
145603
|
-
function createSolutionBuilderWithWatchHost2(system =
|
|
145603
|
+
function createSolutionBuilderWithWatchHost2(system = sys2, createProgram22, reportDiagnostic, reportSolutionBuilderStatus, reportWatchStatus2) {
|
|
145604
145604
|
const host = createSolutionBuilderHostBase(system, createProgram22, reportDiagnostic, reportSolutionBuilderStatus);
|
|
145605
145605
|
const watchHost = createWatchHost2(system, reportWatchStatus2);
|
|
145606
145606
|
copyProperties(host, watchHost);
|
|
@@ -147729,11 +147729,11 @@ ${lanes.join("\n")}
|
|
|
147729
147729
|
}
|
|
147730
147730
|
});
|
|
147731
147731
|
function hasArgument2(argumentName) {
|
|
147732
|
-
return
|
|
147732
|
+
return sys2.args.includes(argumentName);
|
|
147733
147733
|
}
|
|
147734
147734
|
function findArgument2(argumentName) {
|
|
147735
|
-
const index =
|
|
147736
|
-
return index >= 0 && index <
|
|
147735
|
+
const index = sys2.args.indexOf(argumentName);
|
|
147736
|
+
return index >= 0 && index < sys2.args.length - 1 ? sys2.args[index + 1] : void 0;
|
|
147737
147737
|
}
|
|
147738
147738
|
function nowString2() {
|
|
147739
147739
|
const d4 = /* @__PURE__ */ new Date();
|
|
@@ -147790,12 +147790,12 @@ ${lanes.join("\n")}
|
|
|
147790
147790
|
return nodeCoreModules.has(moduleName) ? "node" : moduleName;
|
|
147791
147791
|
}
|
|
147792
147792
|
function loadSafeList(host, safeListPath) {
|
|
147793
|
-
const result =
|
|
147793
|
+
const result = readConfigFile3(safeListPath, (path15) => host.readFile(path15));
|
|
147794
147794
|
return new Map(Object.entries(result.config));
|
|
147795
147795
|
}
|
|
147796
147796
|
function loadTypesMap(host, typesMapPath) {
|
|
147797
147797
|
var _a3;
|
|
147798
|
-
const result =
|
|
147798
|
+
const result = readConfigFile3(typesMapPath, (path15) => host.readFile(path15));
|
|
147799
147799
|
if ((_a3 = result.config) == null ? void 0 : _a3.simpleMap) {
|
|
147800
147800
|
return new Map(Object.entries(result.config.simpleMap));
|
|
147801
147801
|
}
|
|
@@ -147875,7 +147875,7 @@ ${lanes.join("\n")}
|
|
|
147875
147875
|
let manifestTypingNames;
|
|
147876
147876
|
if (host.fileExists(manifestPath)) {
|
|
147877
147877
|
filesToWatch2.push(manifestPath);
|
|
147878
|
-
manifest =
|
|
147878
|
+
manifest = readConfigFile3(manifestPath, (path15) => host.readFile(path15)).config;
|
|
147879
147879
|
manifestTypingNames = flatMap([manifest.dependencies, manifest.devDependencies, manifest.optionalDependencies, manifest.peerDependencies], getOwnKeys);
|
|
147880
147880
|
addInferredTypings(manifestTypingNames, `Typing names in '${manifestPath}' dependencies`);
|
|
147881
147881
|
}
|
|
@@ -147910,7 +147910,7 @@ ${lanes.join("\n")}
|
|
|
147910
147910
|
log(`Searching for typing names in ${packagesFolderPath}; all files: ${JSON.stringify(dependencyManifestNames)}`);
|
|
147911
147911
|
for (const manifestPath2 of dependencyManifestNames) {
|
|
147912
147912
|
const normalizedFileName = normalizePath(manifestPath2);
|
|
147913
|
-
const result2 =
|
|
147913
|
+
const result2 = readConfigFile3(normalizedFileName, (path15) => host.readFile(path15));
|
|
147914
147914
|
const manifest2 = result2.config;
|
|
147915
147915
|
if (!manifest2.name) {
|
|
147916
147916
|
continue;
|
|
@@ -154525,7 +154525,7 @@ ${lanes.join("\n")}
|
|
|
154525
154525
|
if (match2) {
|
|
154526
154526
|
if (match2[1]) {
|
|
154527
154527
|
const base64Object = match2[1];
|
|
154528
|
-
return convertDocumentToSourceMapper(host, base64decode(
|
|
154528
|
+
return convertDocumentToSourceMapper(host, base64decode(sys2, base64Object), generatedFileName);
|
|
154529
154529
|
}
|
|
154530
154530
|
mapFileName = void 0;
|
|
154531
154531
|
}
|
|
@@ -163433,8 +163433,8 @@ ${newComment.split("\n").map((c4) => ` * ${c4}`).join("\n")}
|
|
|
163433
163433
|
return node && node.parent && node.parent.kind === 212 && node.parent.argumentExpression === node;
|
|
163434
163434
|
}
|
|
163435
163435
|
function getDefaultLibFilePath(options8) {
|
|
163436
|
-
if (
|
|
163437
|
-
return combinePaths(getDirectoryPath(normalizePath(
|
|
163436
|
+
if (sys2) {
|
|
163437
|
+
return combinePaths(getDirectoryPath(normalizePath(sys2.getExecutingFilePath())), getDefaultLibFileName(options8));
|
|
163438
163438
|
}
|
|
163439
163439
|
throw new Error("getDefaultLibFilePath is only supported when consumed as a node module. ");
|
|
163440
163440
|
}
|
|
@@ -207585,7 +207585,7 @@ ${e3.message}`;
|
|
|
207585
207585
|
parseIsolatedEntityName: () => parseIsolatedEntityName,
|
|
207586
207586
|
parseIsolatedJSDocComment: () => parseIsolatedJSDocComment,
|
|
207587
207587
|
parseJSDocTypeExpressionForTests: () => parseJSDocTypeExpressionForTests,
|
|
207588
|
-
parseJsonConfigFileContent: () =>
|
|
207588
|
+
parseJsonConfigFileContent: () => parseJsonConfigFileContent3,
|
|
207589
207589
|
parseJsonSourceFileConfigFileContent: () => parseJsonSourceFileConfigFileContent2,
|
|
207590
207590
|
parseJsonText: () => parseJsonText,
|
|
207591
207591
|
parseListTypeOption: () => parseListTypeOption2,
|
|
@@ -207638,7 +207638,7 @@ ${e3.message}`;
|
|
|
207638
207638
|
rangeStartIsOnSameLineAsRangeEnd: () => rangeStartIsOnSameLineAsRangeEnd,
|
|
207639
207639
|
rangeStartPositionsAreOnSameLine: () => rangeStartPositionsAreOnSameLine,
|
|
207640
207640
|
readBuilderProgram: () => readBuilderProgram2,
|
|
207641
|
-
readConfigFile: () =>
|
|
207641
|
+
readConfigFile: () => readConfigFile3,
|
|
207642
207642
|
readHelper: () => readHelper2,
|
|
207643
207643
|
readJson: () => readJson4,
|
|
207644
207644
|
readJsonConfigFile: () => readJsonConfigFile2,
|
|
@@ -207793,7 +207793,7 @@ ${e3.message}`;
|
|
|
207793
207793
|
symbolToDisplayParts: () => symbolToDisplayParts2,
|
|
207794
207794
|
syntaxMayBeASICandidate: () => syntaxMayBeASICandidate2,
|
|
207795
207795
|
syntaxRequiresTrailingSemicolonOrASI: () => syntaxRequiresTrailingSemicolonOrASI2,
|
|
207796
|
-
sys: () =>
|
|
207796
|
+
sys: () => sys2,
|
|
207797
207797
|
sysLog: () => sysLog2,
|
|
207798
207798
|
tagNamesAreEquivalent: () => tagNamesAreEquivalent,
|
|
207799
207799
|
takeWhile: () => takeWhile,
|
|
@@ -209989,7 +209989,7 @@ ${e3.message}`;
|
|
|
209989
209989
|
parseIsolatedEntityName: () => parseIsolatedEntityName,
|
|
209990
209990
|
parseIsolatedJSDocComment: () => parseIsolatedJSDocComment,
|
|
209991
209991
|
parseJSDocTypeExpressionForTests: () => parseJSDocTypeExpressionForTests,
|
|
209992
|
-
parseJsonConfigFileContent: () =>
|
|
209992
|
+
parseJsonConfigFileContent: () => parseJsonConfigFileContent3,
|
|
209993
209993
|
parseJsonSourceFileConfigFileContent: () => parseJsonSourceFileConfigFileContent2,
|
|
209994
209994
|
parseJsonText: () => parseJsonText,
|
|
209995
209995
|
parseListTypeOption: () => parseListTypeOption2,
|
|
@@ -210042,7 +210042,7 @@ ${e3.message}`;
|
|
|
210042
210042
|
rangeStartIsOnSameLineAsRangeEnd: () => rangeStartIsOnSameLineAsRangeEnd,
|
|
210043
210043
|
rangeStartPositionsAreOnSameLine: () => rangeStartPositionsAreOnSameLine,
|
|
210044
210044
|
readBuilderProgram: () => readBuilderProgram2,
|
|
210045
|
-
readConfigFile: () =>
|
|
210045
|
+
readConfigFile: () => readConfigFile3,
|
|
210046
210046
|
readHelper: () => readHelper2,
|
|
210047
210047
|
readJson: () => readJson4,
|
|
210048
210048
|
readJsonConfigFile: () => readJsonConfigFile2,
|
|
@@ -210197,7 +210197,7 @@ ${e3.message}`;
|
|
|
210197
210197
|
symbolToDisplayParts: () => symbolToDisplayParts2,
|
|
210198
210198
|
syntaxMayBeASICandidate: () => syntaxMayBeASICandidate2,
|
|
210199
210199
|
syntaxRequiresTrailingSemicolonOrASI: () => syntaxRequiresTrailingSemicolonOrASI2,
|
|
210200
|
-
sys: () =>
|
|
210200
|
+
sys: () => sys2,
|
|
210201
210201
|
sysLog: () => sysLog2,
|
|
210202
210202
|
tagNamesAreEquivalent: () => tagNamesAreEquivalent,
|
|
210203
210203
|
takeWhile: () => takeWhile,
|
|
@@ -210380,7 +210380,7 @@ ${e3.message}`;
|
|
|
210380
210380
|
return require_typescript3();
|
|
210381
210381
|
})();
|
|
210382
210382
|
if (typeof module2 !== "undefined" && module2.exports) {
|
|
210383
|
-
module2.exports =
|
|
210383
|
+
module2.exports = ts8;
|
|
210384
210384
|
}
|
|
210385
210385
|
}
|
|
210386
210386
|
});
|
|
@@ -223516,11 +223516,11 @@ var init_babel = __esm({
|
|
|
223516
223516
|
function es7(a2, t13) {
|
|
223517
223517
|
return Zt6(a2, t13) || Ei6.has(a2);
|
|
223518
223518
|
}
|
|
223519
|
-
function
|
|
223519
|
+
function ts8(a2) {
|
|
223520
223520
|
return Ii6.has(a2);
|
|
223521
223521
|
}
|
|
223522
223522
|
function ss7(a2, t13) {
|
|
223523
|
-
return es7(a2, t13) ||
|
|
223523
|
+
return es7(a2, t13) || ts8(a2);
|
|
223524
223524
|
}
|
|
223525
223525
|
function Ni7(a2) {
|
|
223526
223526
|
return Ci6.has(a2);
|
|
@@ -226573,7 +226573,7 @@ var init_babel = __esm({
|
|
|
226573
226573
|
y7 && this.checkLVal(y7, { in: d4, binding: s, checkClashes: i3, strictModeChanged: r4, hasParenthesizedAncestor: f7 });
|
|
226574
226574
|
}
|
|
226575
226575
|
checkIdentifier(t13, e3, s = false) {
|
|
226576
|
-
this.state.strict && (s ? ss7(t13.name, this.inModule) :
|
|
226576
|
+
this.state.strict && (s ? ss7(t13.name, this.inModule) : ts8(t13.name)) && (e3 === 64 ? this.raise(p4.StrictEvalArguments, t13, { referenceName: t13.name }) : this.raise(p4.StrictEvalArgumentsBinding, t13, { bindingName: t13.name })), e3 & 8192 && t13.name === "let" && this.raise(p4.LetInLexicalBinding, t13), e3 & 64 || this.declareNameFromIdentifier(t13, e3);
|
|
226577
226577
|
}
|
|
226578
226578
|
declareNameFromIdentifier(t13, e3) {
|
|
226579
226579
|
this.scope.declareName(t13.name, e3, t13.loc.start);
|
|
@@ -237479,7 +237479,7 @@ var init_flow = __esm({
|
|
|
237479
237479
|
return [0, e4, Fx(x11[2], r4)];
|
|
237480
237480
|
}
|
|
237481
237481
|
fW(0);
|
|
237482
|
-
var UT0 = GY(1),
|
|
237482
|
+
var UT0 = GY(1), ts8 = GY(2);
|
|
237483
237483
|
function BT0(x11) {
|
|
237484
237484
|
for (var r4 = cW2(0); ; ) {
|
|
237485
237485
|
if (!r4)
|
|
@@ -237499,7 +237499,7 @@ var init_flow = __esm({
|
|
|
237499
237499
|
return xO(x11, r4, 0, Xx(r4));
|
|
237500
237500
|
}
|
|
237501
237501
|
function fX(x11) {
|
|
237502
|
-
return jl4(
|
|
237502
|
+
return jl4(ts8, x11), bY(ts8, 10), es7(ts8);
|
|
237503
237503
|
}
|
|
237504
237504
|
var cO = [0, BT0];
|
|
237505
237505
|
function sO(x11) {
|
|
@@ -240392,7 +240392,7 @@ var init_flow = __esm({
|
|
|
240392
240392
|
}, t14, e4);
|
|
240393
240393
|
}
|
|
240394
240394
|
function SO(x11) {
|
|
240395
|
-
return AX(
|
|
240395
|
+
return AX(ts8, x11);
|
|
240396
240396
|
}
|
|
240397
240397
|
function Tr7(x11) {
|
|
240398
240398
|
var r4 = x11[1];
|
|
@@ -240528,19 +240528,19 @@ var init_flow = __esm({
|
|
|
240528
240528
|
}
|
|
240529
240529
|
try {
|
|
240530
240530
|
var t14 = ay(x11);
|
|
240531
|
-
l(SO(vF), t14), AO(
|
|
240531
|
+
l(SO(vF), t14), AO(ts8, e4);
|
|
240532
240532
|
var u = rW(0);
|
|
240533
240533
|
if (u < 0) {
|
|
240534
240534
|
var i4 = ny(u);
|
|
240535
240535
|
fX(Z12(FT0, i4)[1 + i4]);
|
|
240536
240536
|
}
|
|
240537
|
-
var f11 = es7(
|
|
240537
|
+
var f11 = es7(ts8), o4 = f11;
|
|
240538
240538
|
} catch (A11) {
|
|
240539
240539
|
var a2 = I12(A11), d4 = ay(x11);
|
|
240540
|
-
l(SO(cF), d4), AO(
|
|
240540
|
+
l(SO(cF), d4), AO(ts8, e4);
|
|
240541
240541
|
var k11 = ay(a2);
|
|
240542
|
-
l(SO(sF), k11), AO(
|
|
240543
|
-
var o4 = es7(
|
|
240542
|
+
l(SO(sF), k11), AO(ts8, KY(0));
|
|
240543
|
+
var o4 = es7(ts8);
|
|
240544
240544
|
}
|
|
240545
240545
|
var T4 = o4;
|
|
240546
240546
|
} catch (A11) {
|
|
@@ -240873,7 +240873,7 @@ var init_flow = __esm({
|
|
|
240873
240873
|
function ZX(x11) {
|
|
240874
240874
|
return Fr5(eS0);
|
|
240875
240875
|
}
|
|
240876
|
-
var tS0 = ZX(0), nS0 = KX(UT0), uS0 = KX(
|
|
240876
|
+
var tS0 = ZX(0), nS0 = KX(UT0), uS0 = KX(ts8);
|
|
240877
240877
|
LO(tS0);
|
|
240878
240878
|
function WX(x11, r4) {
|
|
240879
240879
|
var e4 = Fr5(16), t14 = LO(e4);
|
|
@@ -286864,7 +286864,7 @@ ${X7.join(`
|
|
|
286864
286864
|
}
|
|
286865
286865
|
function N42(e5, t13) {
|
|
286866
286866
|
let n = e5.name.escapedText;
|
|
286867
|
-
return c_(e5.parent, t13).filter((a5) =>
|
|
286867
|
+
return c_(e5.parent, t13).filter((a5) => ts8(a5) && a5.typeParameters.some((_5) => _5.name.escapedText === n));
|
|
286868
286868
|
}
|
|
286869
286869
|
function O42(e5) {
|
|
286870
286870
|
return N42(e5, false);
|
|
@@ -286927,7 +286927,7 @@ ${X7.join(`
|
|
|
286927
286927
|
return nn7(e5, Vb);
|
|
286928
286928
|
}
|
|
286929
286929
|
function JC(e5) {
|
|
286930
|
-
return nn7(e5,
|
|
286930
|
+
return nn7(e5, ts8);
|
|
286931
286931
|
}
|
|
286932
286932
|
function Mg(e5) {
|
|
286933
286933
|
return nn7(e5, Hb);
|
|
@@ -286994,12 +286994,12 @@ ${X7.join(`
|
|
|
286994
286994
|
if (zb(e5.parent)) {
|
|
286995
286995
|
let t13 = E23(e5.parent);
|
|
286996
286996
|
if (t13 && eo3(t13.tags))
|
|
286997
|
-
return zo2(t13.tags, (n) =>
|
|
286997
|
+
return zo2(t13.tags, (n) => ts8(n) ? n.typeParameters : void 0);
|
|
286998
286998
|
}
|
|
286999
286999
|
return Je9;
|
|
287000
287000
|
}
|
|
287001
287001
|
if (Xl4(e5))
|
|
287002
|
-
return I7.assert(e5.parent.kind === 327), zo2(e5.parent.tags, (t13) =>
|
|
287002
|
+
return I7.assert(e5.parent.kind === 327), zo2(e5.parent.tags, (t13) => ts8(t13) ? t13.typeParameters : void 0);
|
|
287003
287003
|
if (e5.typeParameters || J82(e5) && e5.typeParameters)
|
|
287004
287004
|
return e5.typeParameters;
|
|
287005
287005
|
if (Vt5(e5)) {
|
|
@@ -287013,7 +287013,7 @@ ${X7.join(`
|
|
|
287013
287013
|
return Je9;
|
|
287014
287014
|
}
|
|
287015
287015
|
function qC(e5) {
|
|
287016
|
-
return e5.constraint ? e5.constraint :
|
|
287016
|
+
return e5.constraint ? e5.constraint : ts8(e5.parent) && e5 === e5.parent.typeParameters[0] ? e5.parent.constraint : void 0;
|
|
287017
287017
|
}
|
|
287018
287018
|
function ro3(e5) {
|
|
287019
287019
|
return e5.kind === 80 || e5.kind === 81;
|
|
@@ -290651,7 +290651,7 @@ ${X7.join(`
|
|
|
290651
290651
|
return zo2(zl3(e5), (t13) => WI(t13) ? t13.typeParameters : void 0);
|
|
290652
290652
|
}
|
|
290653
290653
|
function WI(e5) {
|
|
290654
|
-
return
|
|
290654
|
+
return ts8(e5) && !(e5.parent.kind === 327 && (e5.parent.tags.some(Xl4) || e5.parent.tags.some(zb)));
|
|
290655
290655
|
}
|
|
290656
290656
|
function VI(e5) {
|
|
290657
290657
|
let t13 = L23(e5);
|
|
@@ -295504,7 +295504,7 @@ ${X7.join(`
|
|
|
295504
295504
|
function lu5(e5) {
|
|
295505
295505
|
return e5.kind === 351;
|
|
295506
295506
|
}
|
|
295507
|
-
function
|
|
295507
|
+
function ts8(e5) {
|
|
295508
295508
|
return e5.kind === 352;
|
|
295509
295509
|
}
|
|
295510
295510
|
function NJ(e5) {
|
|
@@ -302400,7 +302400,7 @@ ${X7.join(`
|
|
|
302400
302400
|
"use strict";
|
|
302401
302401
|
Q8(), YF();
|
|
302402
302402
|
} }), D7 = {};
|
|
302403
|
-
_g(D7, { ANONYMOUS: () => ANONYMOUS, AccessFlags: () => jy, AssertionLevel: () => _y2, AssignmentDeclarationKind: () => Gy, AssignmentKind: () => V02, Associativity: () => G0, BreakpointResolver: () => ts_BreakpointResolver_exports, BuilderFileEmit: () => BuilderFileEmit, BuilderProgramKind: () => BuilderProgramKind, BuilderState: () => BuilderState, BundleFileSectionKind: () => f02, CallHierarchy: () => ts_CallHierarchy_exports, CharacterCodes: () => o02, CheckFlags: () => Oy2, CheckMode: () => CheckMode, ClassificationType: () => ClassificationType, ClassificationTypeNames: () => ClassificationTypeNames, CommentDirectiveType: () => hy, Comparison: () => ry, CompletionInfoFlags: () => CompletionInfoFlags, CompletionTriggerKind: () => CompletionTriggerKind, Completions: () => ts_Completions_exports, ContainerFlags: () => ContainerFlags, ContextFlags: () => wy2, Debug: () => I7, DiagnosticCategory: () => ud, Diagnostics: () => B8, DocumentHighlights: () => DocumentHighlights, ElementFlags: () => Ry, EmitFlags: () => md, EmitHint: () => l02, EmitOnly: () => by2, EndOfLineState: () => EndOfLineState, EnumKind: () => Ny, ExitStatus: () => Ty2, ExportKind: () => ExportKind, Extension: () => s02, ExternalEmitHelpers: () => c02, FileIncludeKind: () => yy2, FilePreprocessingDiagnosticsKind: () => gy2, FileSystemEntryKind: () => FileSystemEntryKind, FileWatcherEventKind: () => FileWatcherEventKind, FindAllReferences: () => ts_FindAllReferences_exports, FlattenLevel: () => FlattenLevel, FlowFlags: () => Tl4, ForegroundColorEscapeSequences: () => ForegroundColorEscapeSequences, FunctionFlags: () => H0, GeneratedIdentifierFlags: () => dy2, GetLiteralTextFlags: () => W0, GoToDefinition: () => ts_GoToDefinition_exports, HighlightSpanKind: () => HighlightSpanKind, IdentifierNameMap: () => IdentifierNameMap, IdentifierNameMultiMap: () => IdentifierNameMultiMap, ImportKind: () => ImportKind, ImportsNotUsedAsValues: () => t02, IndentStyle: () => IndentStyle, IndexFlags: () => Fy, IndexKind: () => qy, InferenceFlags: () => Vy, InferencePriority: () => Wy, InlayHintKind: () => InlayHintKind, InlayHints: () => ts_InlayHints_exports, InternalEmitFlags: () => _0, InternalSymbolName: () => My, InvalidatedProjectKind: () => InvalidatedProjectKind, JSDocParsingMode: () => h02, JsDoc: () => ts_JsDoc_exports, JsTyping: () => ts_JsTyping_exports, JsxEmit: () => e02, JsxFlags: () => fy, JsxReferenceKind: () => By, LanguageServiceMode: () => LanguageServiceMode, LanguageVariant: () => i02, LexicalEnvironmentFlags: () => p0, ListFormat: () => d02, LogLevel: () => ly, MemberOverrideStatus: () => Sy2, ModifierFlags: () => id, ModuleDetectionKind: () => $y, ModuleInstanceState: () => ModuleInstanceState, ModuleKind: () => Zy, ModuleResolutionKind: () => Xy, ModuleSpecifierEnding: () => K0, NavigateTo: () => ts_NavigateTo_exports, NavigationBar: () => ts_NavigationBar_exports, NewLineKind: () => n02, NodeBuilderFlags: () => Ey2, NodeCheckFlags: () => Ly, NodeFactoryFlags: () => Z0, NodeFlags: () => rd, NodeResolutionFeatures: () => NodeResolutionFeatures, ObjectFlags: () => cd, OperationCanceledException: () => od, OperatorPrecedence: () => X02, OrganizeImports: () => ts_OrganizeImports_exports, OrganizeImportsMode: () => OrganizeImportsMode, OuterExpressionKinds: () => u02, OutliningElementsCollector: () => ts_OutliningElementsCollector_exports, OutliningSpanKind: () => OutliningSpanKind, OutputFileType: () => OutputFileType, PackageJsonAutoImportPreference: () => PackageJsonAutoImportPreference, PackageJsonDependencyGroup: () => PackageJsonDependencyGroup, PatternMatchKind: () => PatternMatchKind, PollingInterval: () => PollingInterval, PollingWatchKind: () => Ky, PragmaKindFlags: () => m02, PrivateIdentifierKind: () => PrivateIdentifierKind, ProcessLevel: () => ProcessLevel, ProgramUpdateLevel: () => ProgramUpdateLevel, QuotePreference: () => QuotePreference, RelationComparisonResult: () => ad, Rename: () => ts_Rename_exports, ScriptElementKind: () => ScriptElementKind, ScriptElementKindModifier: () => ScriptElementKindModifier, ScriptKind: () => pd, ScriptSnapshot: () => ScriptSnapshot, ScriptTarget: () => r0, SemanticClassificationFormat: () => SemanticClassificationFormat, SemanticMeaning: () => SemanticMeaning, SemicolonPreference: () => SemicolonPreference, SignatureCheckMode: () => SignatureCheckMode, SignatureFlags: () => ld, SignatureHelp: () => ts_SignatureHelp_exports, SignatureKind: () => Uy, SmartSelectionRange: () => ts_SmartSelectionRange_exports, SnippetKind: () => dd, SortKind: () => oy, StructureIsReused: () => vy2, SymbolAccessibility: () => ky2, SymbolDisplay: () => ts_SymbolDisplay_exports, SymbolDisplayPartKind: () => SymbolDisplayPartKind, SymbolFlags: () => sd, SymbolFormatFlags: () => Ay2, SyntaxKind: () => nd, SyntheticSymbolKind: () => Dy, Ternary: () => Hy, ThrottledCancellationToken: () => v7, TokenClass: () => TokenClass, TokenFlags: () => my2, TransformFlags: () => fd, TypeFacts: () => TypeFacts, TypeFlags: () => _d, TypeFormatFlags: () => Cy2, TypeMapKind: () => zy, TypePredicateKind: () => Py, TypeReferenceSerializationKind: () => Iy, UnionReduction: () => xy2, UpToDateStatusType: () => UpToDateStatusType, VarianceFlags: () => Jy, Version: () => Version, VersionRange: () => VersionRange, WatchDirectoryFlags: () => a02, WatchDirectoryKind: () => Yy, WatchFileKind: () => Qy, WatchLogLevel: () => WatchLogLevel, WatchType: () => WatchType, accessPrivateIdentifier: () => accessPrivateIdentifier, addDisposableResourceHelper: () => addDisposableResourceHelper, addEmitFlags: () => addEmitFlags, addEmitHelper: () => addEmitHelper, addEmitHelpers: () => addEmitHelpers, addInternalEmitFlags: () => addInternalEmitFlags, addNodeFactoryPatcher: () => HM, addObjectAllocatorPatcher: () => cO, addRange: () => zn6, addRelatedInfo: () => ol4, addSyntheticLeadingComment: () => addSyntheticLeadingComment, addSyntheticTrailingComment: () => addSyntheticTrailingComment, addToSeen: () => QN, advancedAsyncSuperHelper: () => advancedAsyncSuperHelper, affectsDeclarationPathOptionDeclarations: () => affectsDeclarationPathOptionDeclarations, affectsEmitOptionDeclarations: () => affectsEmitOptionDeclarations, allKeysStartWithDot: () => allKeysStartWithDot, altDirectorySeparator: () => Cg, and: () => xE, append: () => Et11, appendIfUnique: () => bv, arrayFrom: () => Bd, arrayIsEqualTo: () => D9, arrayIsHomogeneous: () => hM, arrayIsSorted: () => A9, arrayOf: () => q9, arrayReverseIterator: () => O9, arrayToMap: () => W92, arrayToMultiMap: () => Ev, arrayToNumericMap: () => V9, arraysEqual: () => fv, assertType: () => EE, assign: () => z9, assignHelper: () => assignHelper, asyncDelegator: () => asyncDelegator, asyncGeneratorHelper: () => asyncGeneratorHelper, asyncSuperHelper: () => asyncSuperHelper, asyncValues: () => asyncValues, attachFileToDiagnostics: () => Ya3, awaitHelper: () => awaitHelper, awaiterHelper: () => awaiterHelper, base64decode: () => gN, base64encode: () => yN, binarySearch: () => Jl4, binarySearchKey: () => Sv, bindSourceFile: () => bindSourceFile, breakIntoCharacterSpans: () => breakIntoCharacterSpans, breakIntoWordSpans: () => breakIntoWordSpans, buildLinkParts: () => buildLinkParts, buildOpts: () => buildOpts, buildOverload: () => buildOverload, bundlerModuleNameResolver: () => bundlerModuleNameResolver, canBeConvertedToAsync: () => canBeConvertedToAsync, canHaveDecorators: () => F8, canHaveExportModifier: () => DM2, canHaveFlowNode: () => MP, canHaveIllegalDecorators: () => uR, canHaveIllegalModifiers: () => pR, canHaveIllegalType: () => lR, canHaveIllegalTypeParameters: () => J82, canHaveJSDoc: () => hm, canHaveLocals: () => UA, canHaveModifiers: () => U_, canHaveSymbol: () => BA, canJsonReportNoInputFiles: () => canJsonReportNoInputFiles, canProduceDiagnostics: () => canProduceDiagnostics, canUsePropertyAccess: () => PM, canWatchAffectingLocation: () => canWatchAffectingLocation, canWatchAtTypes: () => canWatchAtTypes, canWatchDirectoryOrFile: () => canWatchDirectoryOrFile, cartesianProduct: () => AE, cast: () => wi6, chainBundle: () => chainBundle, chainDiagnosticMessages: () => il4, changeAnyExtension: () => Vv, changeCompilerHostLikeToUseCache: () => changeCompilerHostLikeToUseCache, changeExtension: () => ZO, changesAffectModuleResolution: () => sk, changesAffectingProgramStructure: () => _k, childIsDecorated: () => d23, classElementOrClassElementParameterIsDecorated: () => rP, classHasClassThisAssignment: () => classHasClassThisAssignment, classHasDeclaredOrExplicitlyAssignedName: () => classHasDeclaredOrExplicitlyAssignedName, classHasExplicitlyAssignedName: () => classHasExplicitlyAssignedName, classOrConstructorParameterIsDecorated: () => nP, classPrivateFieldGetHelper: () => classPrivateFieldGetHelper, classPrivateFieldInHelper: () => classPrivateFieldInHelper, classPrivateFieldSetHelper: () => classPrivateFieldSetHelper, classicNameResolver: () => classicNameResolver, classifier: () => ts_classifier_exports, cleanExtendedConfigCache: () => cleanExtendedConfigCache, clear: () => c9, clearMap: () => WN, clearSharedExtendedConfigFileWatcher: () => clearSharedExtendedConfigFileWatcher, climbPastPropertyAccess: () => climbPastPropertyAccess, climbPastPropertyOrElementAccess: () => climbPastPropertyOrElementAccess, clone: () => X9, cloneCompilerOptions: () => cloneCompilerOptions, closeFileWatcher: () => RN, closeFileWatcherOf: () => closeFileWatcherOf, codefix: () => ts_codefix_exports, collapseTextChangeRangesAcrossMultipleVersions: () => TC, collectExternalModuleInfo: () => collectExternalModuleInfo, combine: () => N9, combinePaths: () => Qt7, commentPragmas: () => Wd, commonOptionsWithBuild: () => commonOptionsWithBuild, commonPackageFolders: () => Q0, compact: () => P9, compareBooleans: () => fE, compareDataObjects: () => TS, compareDiagnostics: () => H23, compareDiagnosticsSkipRelatedInformation: () => Ed, compareEmitHelpers: () => compareEmitHelpers, compareNumberOfDirectorySeparators: () => KO, comparePaths: () => Hv, comparePathsCaseInsensitive: () => QE, comparePathsCaseSensitive: () => $E, comparePatternKeys: () => comparePatternKeys, compareProperties: () => pE, compareStringsCaseInsensitive: () => qd, compareStringsCaseInsensitiveEslintCompatible: () => cE, compareStringsCaseSensitive: () => Ii6, compareStringsCaseSensitiveUI: () => uE, compareTextSpans: () => sE, compareValues: () => Mn6, compileOnSaveCommandLineOption: () => compileOnSaveCommandLineOption, compilerOptionsAffectDeclarationPath: () => OO, compilerOptionsAffectEmit: () => NO, compilerOptionsAffectSemanticDiagnostics: () => IO, compilerOptionsDidYouMeanDiagnostics: () => compilerOptionsDidYouMeanDiagnostics, compilerOptionsIndicateEsModules: () => compilerOptionsIndicateEsModules, compose: () => oE, computeCommonSourceDirectoryOfFilenames: () => computeCommonSourceDirectoryOfFilenames, computeLineAndCharacterOfPosition: () => kg, computeLineOfPosition: () => __, computeLineStarts: () => Gd, computePositionOfLineAndCharacter: () => Ag, computeSignature: () => computeSignature, computeSignatureWithDiagnostics: () => computeSignatureWithDiagnostics, computeSuggestionDiagnostics: () => computeSuggestionDiagnostics, concatenate: () => h_, concatenateDiagnosticMessageChains: () => fO, consumesNodeCoreModules: () => consumesNodeCoreModules, contains: () => rs6, containsIgnoredPath: () => YS, containsObjectRestOrSpread: () => Qb, containsParseError: () => El4, containsPath: () => Gv, convertCompilerOptionsForTelemetry: () => convertCompilerOptionsForTelemetry, convertCompilerOptionsFromJson: () => convertCompilerOptionsFromJson, convertJsonOption: () => convertJsonOption, convertToBase64: () => fS, convertToJson: () => convertToJson, convertToObject: () => convertToObject, convertToOptionsWithAbsolutePaths: () => convertToOptionsWithAbsolutePaths, convertToRelativePath: () => KE2, convertToTSConfig: () => convertToTSConfig, convertTypeAcquisitionFromJson: () => convertTypeAcquisitionFromJson, copyComments: () => copyComments, copyEntries: () => uk, copyLeadingComments: () => copyLeadingComments, copyProperties: () => Q9, copyTrailingAsLeadingComments: () => copyTrailingAsLeadingComments, copyTrailingComments: () => copyTrailingComments, couldStartTrivia: () => sC, countWhere: () => s9, createAbstractBuilder: () => createAbstractBuilder, createAccessorPropertyBackingField: () => zR, createAccessorPropertyGetRedirector: () => WR, createAccessorPropertySetRedirector: () => VR, createBaseNodeFactory: () => Nx, createBinaryExpressionTrampoline: () => JR, createBindingHelper: () => createBindingHelper, createBuildInfo: () => createBuildInfo, createBuilderProgram: () => createBuilderProgram, createBuilderProgramUsingProgramBuildInfo: () => createBuilderProgramUsingProgramBuildInfo, createBuilderStatusReporter: () => createBuilderStatusReporter, createCacheWithRedirects: () => createCacheWithRedirects, createCacheableExportInfoMap: () => createCacheableExportInfoMap, createCachedDirectoryStructureHost: () => createCachedDirectoryStructureHost, createClassNamedEvaluationHelperBlock: () => createClassNamedEvaluationHelperBlock, createClassThisAssignmentBlock: () => createClassThisAssignmentBlock, createClassifier: () => createClassifier, createCommentDirectivesMap: () => Nk, createCompilerDiagnostic: () => hl4, createCompilerDiagnosticForInvalidCustomType: () => createCompilerDiagnosticForInvalidCustomType, createCompilerDiagnosticFromMessageChain: () => pO, createCompilerHost: () => createCompilerHost, createCompilerHostFromProgramHost: () => createCompilerHostFromProgramHost, createCompilerHostWorker: () => createCompilerHostWorker, createDetachedDiagnostic: () => Po4, createDiagnosticCollection: () => TI, createDiagnosticForFileFromMessageChain: () => lD, createDiagnosticForNode: () => oD, createDiagnosticForNodeArray: () => sD, createDiagnosticForNodeArrayFromMessageChain: () => cD, createDiagnosticForNodeFromMessageChain: () => _D, createDiagnosticForNodeInSourceFile: () => BT, createDiagnosticForRange: () => pD, createDiagnosticMessageChainFromDiagnostic: () => uD, createDiagnosticReporter: () => createDiagnosticReporter, createDocumentPositionMapper: () => createDocumentPositionMapper, createDocumentRegistry: () => createDocumentRegistry, createDocumentRegistryInternal: () => createDocumentRegistryInternal, createEmitAndSemanticDiagnosticsBuilderProgram: () => createEmitAndSemanticDiagnosticsBuilderProgram, createEmitHelperFactory: () => createEmitHelperFactory, createEmptyExports: () => jJ, createExpressionForJsxElement: () => BJ, createExpressionForJsxFragment: () => UJ, createExpressionForObjectLiteralElementLike: () => XJ, createExpressionForPropertyName: () => E8, createExpressionFromEntityName: () => w8, createExternalHelpersImportDeclarationIfNeeded: () => rR, createFileDiagnostic: () => V23, createFileDiagnosticFromMessageChain: () => i22, createForOfBindingStatement: () => qJ, createGetCanonicalFileName: () => zd, createGetSourceFile: () => createGetSourceFile, createGetSymbolAccessibilityDiagnosticForNode: () => createGetSymbolAccessibilityDiagnosticForNode, createGetSymbolAccessibilityDiagnosticForNodeName: () => createGetSymbolAccessibilityDiagnosticForNodeName, createGetSymbolWalker: () => createGetSymbolWalker, createIncrementalCompilerHost: () => createIncrementalCompilerHost, createIncrementalProgram: () => createIncrementalProgram, createInputFiles: () => eL, createInputFilesWithFilePaths: () => Lx, createInputFilesWithFileTexts: () => Jx, createJsxFactoryExpression: () => x8, createLanguageService: () => vF, createLanguageServiceSourceFile: () => Zb, createMemberAccessForPropertyName: () => Fm2, createModeAwareCache: () => createModeAwareCache, createModeAwareCacheKey: () => createModeAwareCacheKey, createModuleNotFoundChain: () => mk, createModuleResolutionCache: () => createModuleResolutionCache, createModuleResolutionLoader: () => createModuleResolutionLoader, createModuleResolutionLoaderUsingGlobalCache: () => createModuleResolutionLoaderUsingGlobalCache, createModuleSpecifierResolutionHost: () => createModuleSpecifierResolutionHost, createMultiMap: () => Ud, createNodeConverters: () => Ox, createNodeFactory: () => Dd, createOptionNameMap: () => createOptionNameMap, createOverload: () => createOverload, createPackageJsonImportFilter: () => createPackageJsonImportFilter, createPackageJsonInfo: () => createPackageJsonInfo, createParenthesizerRules: () => createParenthesizerRules, createPatternMatcher: () => createPatternMatcher, createPrependNodes: () => createPrependNodes, createPrinter: () => createPrinter, createPrinterWithDefaults: () => createPrinterWithDefaults, createPrinterWithRemoveComments: () => createPrinterWithRemoveComments, createPrinterWithRemoveCommentsNeverAsciiEscape: () => createPrinterWithRemoveCommentsNeverAsciiEscape, createPrinterWithRemoveCommentsOmitTrailingSemicolon: () => createPrinterWithRemoveCommentsOmitTrailingSemicolon, createProgram: () => createProgram, createProgramHost: () => createProgramHost, createPropertyNameNodeForIdentifierOrLiteral: () => CM, createQueue: () => Z92, createRange: () => Em2, createRedirectedBuilderProgram: () => createRedirectedBuilderProgram, createResolutionCache: () => createResolutionCache, createRuntimeTypeSerializer: () => createRuntimeTypeSerializer, createScanner: () => ss7, createSemanticDiagnosticsBuilderProgram: () => createSemanticDiagnosticsBuilderProgram, createSet: () => eE, createSolutionBuilder: () => createSolutionBuilder, createSolutionBuilderHost: () => createSolutionBuilderHost, createSolutionBuilderWithWatch: () => createSolutionBuilderWithWatch, createSolutionBuilderWithWatchHost: () => createSolutionBuilderWithWatchHost, createSortedArray: () => C9, createSourceFile: () => z8, createSourceMapGenerator: () => createSourceMapGenerator, createSourceMapSource: () => tL, createSuperAccessVariableStatement: () => createSuperAccessVariableStatement, createSymbolTable: () => ak, createSymlinkCache: () => jO, createSystemWatchFunctions: () => createSystemWatchFunctions, createTextChange: () => createTextChange, createTextChangeFromStartLength: () => createTextChangeFromStartLength, createTextChangeRange: () => Qd, createTextRangeFromNode: () => createTextRangeFromNode, createTextRangeFromSpan: () => createTextRangeFromSpan, createTextSpan: () => S_, createTextSpanFromBounds: () => Xi8, createTextSpanFromNode: () => createTextSpanFromNode, createTextSpanFromRange: () => createTextSpanFromRange, createTextSpanFromStringLiteralLikeContent: () => createTextSpanFromStringLiteralLikeContent, createTextWriter: () => kI, createTokenRange: () => xN, createTypeChecker: () => createTypeChecker, createTypeReferenceDirectiveResolutionCache: () => createTypeReferenceDirectiveResolutionCache, createTypeReferenceResolutionLoader: () => createTypeReferenceResolutionLoader, createUnparsedSourceFile: () => YM2, createWatchCompilerHost: () => createWatchCompilerHost2, createWatchCompilerHostOfConfigFile: () => createWatchCompilerHostOfConfigFile, createWatchCompilerHostOfFilesAndCompilerOptions: () => createWatchCompilerHostOfFilesAndCompilerOptions, createWatchFactory: () => createWatchFactory, createWatchHost: () => createWatchHost, createWatchProgram: () => createWatchProgram, createWatchStatusReporter: () => createWatchStatusReporter, createWriteFileMeasuringIO: () => createWriteFileMeasuringIO, declarationNameToString: () => FT, decodeMappings: () => decodeMappings, decodedTextSpanIntersectsWith: () => Ng2, decorateHelper: () => decorateHelper, deduplicate: () => yv, defaultIncludeSpec: () => defaultIncludeSpec, defaultInitCompilerOptions: () => defaultInitCompilerOptions, defaultMaximumTruncationLength: () => cx, detectSortCaseSensitivity: () => k9, diagnosticCategoryName: () => FE, diagnosticToString: () => diagnosticToString, directoryProbablyExists: () => mS, directorySeparator: () => vr7, displayPart: () => displayPart, displayPartsToString: () => bF, disposeEmitNodes: () => disposeEmitNodes, disposeResourcesHelper: () => disposeResourcesHelper, documentSpansEqual: () => documentSpansEqual, dumpTracingLegend: () => dumpTracingLegend, elementAt: () => jv, elideNodes: () => FR, emitComments: () => Y32, emitDetachedComments: () => GI, emitFiles: () => emitFiles, emitFilesAndReportErrors: () => emitFilesAndReportErrors, emitFilesAndReportErrorsAndGetExitStatus: () => emitFilesAndReportErrorsAndGetExitStatus, emitModuleKindIsNonNodeESM: () => yO, emitNewLineBeforeLeadingCommentOfPosition: () => HI, emitNewLineBeforeLeadingComments: () => $32, emitNewLineBeforeLeadingCommentsOfPosition: () => Q32, emitSkippedWithNoDiagnostics: () => emitSkippedWithNoDiagnostics, emitUsingBuildInfo: () => emitUsingBuildInfo, emptyArray: () => Je9, emptyFileSystemEntries: () => Ix, emptyMap: () => gg, emptyOptions: () => emptyOptions, emptySet: () => Rv, endsWith: () => is7, ensurePathIsNonModuleName: () => Sg, ensureScriptKind: () => jS, ensureTrailingDirectorySeparator: () => to3, entityNameToString: () => Ci6, enumerateInsertsAndDeletes: () => CE, equalOwnProperties: () => wv, equateStringsCaseInsensitive: () => s_, equateStringsCaseSensitive: () => Rl4, equateValues: () => _o4, esDecorateHelper: () => esDecorateHelper, escapeJsxAttributeString: () => R32, escapeLeadingUnderscores: () => qr5, escapeNonAsciiString: () => xd, escapeSnippetText: () => EM, escapeString: () => Sd, every: () => so4, expandPreOrPostfixIncrementOrDecrementExpression: () => $J, explainFiles: () => explainFiles, explainIfFileIsRedirectAndImpliedFormat: () => explainIfFileIsRedirectAndImpliedFormat, exportAssignmentIsAlias: () => M02, exportStarHelper: () => exportStarHelper, expressionResultIsUnused: () => vM, extend: () => $9, extendsHelper: () => extendsHelper, extensionFromPath: () => al4, extensionIsTS: () => HS, extensionsNotSupportingExtensionlessResolution: () => km2, externalHelpersModuleNameText: () => Am2, factory: () => zr5, fileExtensionIs: () => Na4, fileExtensionIsOneOf: () => ii5, fileIncludeReasonToDiagnostics: () => fileIncludeReasonToDiagnostics, fileShouldUseJavaScriptRequire: () => fileShouldUseJavaScriptRequire, filter: () => rr6, filterMutate: () => _9, filterSemanticDiagnostics: () => filterSemanticDiagnostics, find: () => ir6, findAncestor: () => or7, findBestPatternMatch: () => Mv, findChildOfKind: () => findChildOfKind, findComputedPropertyNameCacheAssignment: () => HR, findConfigFile: () => findConfigFile, findContainingList: () => findContainingList, findDiagnosticForNode: () => findDiagnosticForNode, findFirstNonJsxWhitespaceToken: () => findFirstNonJsxWhitespaceToken, findIndex: () => ul4, findLast: () => lg, findLastIndex: () => a9, findListItemInfo: () => findListItemInfo, findMap: () => o9, findModifier: () => findModifier, findNextToken: () => findNextToken, findPackageJson: () => findPackageJson, findPackageJsons: () => findPackageJsons, findPrecedingMatchingToken: () => findPrecedingMatchingToken, findPrecedingToken: () => findPrecedingToken, findSuperStatementIndexPath: () => findSuperStatementIndexPath, findTokenOnLeftOfPosition: () => findTokenOnLeftOfPosition, findUseStrictPrologue: () => A8, first: () => pg, firstDefined: () => cg, firstDefinedIterator: () => n9, firstIterator: () => J92, firstOrOnly: () => firstOrOnly, firstOrUndefined: () => y_, firstOrUndefinedIterator: () => L9, fixupCompilerOptions: () => fixupCompilerOptions, flatMap: () => zo2, flatMapIterator: () => p9, flatMapToMutable: () => mv, flatten: () => o_, flattenCommaList: () => XR, flattenDestructuringAssignment: () => flattenDestructuringAssignment, flattenDestructuringBinding: () => flattenDestructuringBinding, flattenDiagnosticMessageText: () => flattenDiagnosticMessageText, forEach: () => wn5, forEachAncestor: () => ck, forEachAncestorDirectory: () => $v, forEachChild: () => Wt7, forEachChildRecursively: () => ag, forEachEmittedFile: () => forEachEmittedFile, forEachEnclosingBlockScopeContainer: () => nD, forEachEntry: () => lk, forEachExternalModuleToImportFrom: () => forEachExternalModuleToImportFrom, forEachImportClauseDeclaration: () => DP, forEachKey: () => C02, forEachLeadingCommentRange: () => _C, forEachNameInAccessChainWalkingLeft: () => tO, forEachPropertyAssignment: () => p22, forEachResolvedProjectReference: () => forEachResolvedProjectReference, forEachReturnStatement: () => ED, forEachRight: () => t92, forEachTrailingCommentRange: () => cC, forEachTsConfigPropArray: () => HT, forEachUnique: () => forEachUnique, forEachYieldExpression: () => CD, forSomeAncestorDirectory: () => GN, formatColorAndReset: () => formatColorAndReset, formatDiagnostic: () => formatDiagnostic, formatDiagnostics: () => formatDiagnostics, formatDiagnosticsWithColorAndContext: () => formatDiagnosticsWithColorAndContext, formatGeneratedName: () => Nd, formatGeneratedNamePart: () => ig, formatLocation: () => formatLocation, formatMessage: () => uO, formatStringFromArgs: () => P_2, formatting: () => ts_formatting_exports, fullTripleSlashAMDReferencePathRegEx: () => ob, fullTripleSlashReferencePathRegEx: () => ab, generateDjb2Hash: () => generateDjb2Hash, generateTSConfig: () => generateTSConfig, generatorHelper: () => generatorHelper, getAdjustedReferenceLocation: () => getAdjustedReferenceLocation, getAdjustedRenameLocation: () => getAdjustedRenameLocation, getAliasDeclarationFromName: () => v32, getAllAccessorDeclarations: () => J23, getAllDecoratorsOfClass: () => getAllDecoratorsOfClass, getAllDecoratorsOfClassElement: () => getAllDecoratorsOfClassElement, getAllJSDocTags: () => V42, getAllJSDocTagsOfKind: () => jC, getAllKeys: () => B9, getAllProjectOutputs: () => getAllProjectOutputs, getAllSuperTypeNodes: () => E32, getAllUnscopedEmitHelpers: () => getAllUnscopedEmitHelpers, getAllowJSCompilerOption: () => K23, getAllowSyntheticDefaultImports: () => xO, getAncestor: () => eI, getAnyExtensionFromPath: () => hd, getAreDeclarationMapsEnabled: () => SO, getAssignedExpandoInitializer: () => yP, getAssignedName: () => D42, getAssignedNameOfIdentifier: () => getAssignedNameOfIdentifier, getAssignmentDeclarationKind: () => Oa2, getAssignmentDeclarationPropertyAccessKind: () => o3, getAssignmentTargetKind: () => FP, getAutomaticTypeDirectiveNames: () => getAutomaticTypeDirectiveNames, getBaseFileName: () => os6, getBinaryOperatorPrecedence: () => ml4, getBuildInfo: () => getBuildInfo, getBuildInfoFileVersionMap: () => getBuildInfoFileVersionMap, getBuildInfoText: () => getBuildInfoText, getBuildOrderFromAnyBuildOrder: () => getBuildOrderFromAnyBuildOrder, getBuilderCreationParameters: () => getBuilderCreationParameters, getBuilderFileEmit: () => getBuilderFileEmit, getCheckFlags: () => vS, getClassExtendsHeritageElement: () => x32, getClassLikeDeclarationOfSymbol: () => xS, getCombinedLocalAndExportSymbolFlags: () => BN, getCombinedModifierFlags: () => Yd, getCombinedNodeFlags: () => x_, getCombinedNodeFlagsAlwaysIncludeJSDoc: () => xC, getCommentRange: () => getCommentRange, getCommonSourceDirectory: () => getCommonSourceDirectory, getCommonSourceDirectoryOfConfig: () => getCommonSourceDirectoryOfConfig, getCompilerOptionValue: () => z0, getCompilerOptionsDiffValue: () => getCompilerOptionsDiffValue, getConditions: () => getConditions, getConfigFileParsingDiagnostics: () => getConfigFileParsingDiagnostics, getConstantValue: () => getConstantValue, getContainerFlags: () => getContainerFlags, getContainerNode: () => getContainerNode, getContainingClass: () => I0, getContainingClassExcludingClassDecorators: () => WD, getContainingClassStaticBlock: () => qD, getContainingFunction: () => BD, getContainingFunctionDeclaration: () => UD, getContainingFunctionOrClassStaticBlock: () => zD, getContainingNodeArray: () => TM, getContainingObjectLiteralElement: () => c7, getContextualTypeFromParent: () => getContextualTypeFromParent, getContextualTypeFromParentOrAncestorTypeNode: () => getContextualTypeFromParentOrAncestorTypeNode, getCurrentTime: () => getCurrentTime, getDeclarationDiagnostics: () => getDeclarationDiagnostics, getDeclarationEmitExtensionForPath: () => q32, getDeclarationEmitOutputFilePath: () => NI, getDeclarationEmitOutputFilePathWorker: () => U32, getDeclarationFromName: () => QP, getDeclarationModifierFlagsFromSymbol: () => jN, getDeclarationOfKind: () => rk, getDeclarationsOfKind: () => ik, getDeclaredExpandoInitializer: () => mP, getDecorators: () => CC, getDefaultCompilerOptions: () => a7, getDefaultExportInfoWorker: () => getDefaultExportInfoWorker, getDefaultFormatCodeSettings: () => getDefaultFormatCodeSettings, getDefaultLibFileName: () => h4, getDefaultLibFilePath: () => AF, getDefaultLikeExportInfo: () => getDefaultLikeExportInfo, getDiagnosticText: () => getDiagnosticText, getDiagnosticsWithinSpan: () => getDiagnosticsWithinSpan, getDirectoryPath: () => Mi6, getDirectoryToWatchFailedLookupLocation: () => getDirectoryToWatchFailedLookupLocation, getDirectoryToWatchFailedLookupLocationFromTypeRoot: () => getDirectoryToWatchFailedLookupLocationFromTypeRoot, getDocumentPositionMapper: () => getDocumentPositionMapper, getESModuleInterop: () => X23, getEditsForFileRename: () => getEditsForFileRename, getEffectiveBaseTypeNode: () => S32, getEffectiveConstraintOfTypeParameter: () => qC, getEffectiveContainerForJSDocTemplateTag: () => JP, getEffectiveImplementsTypeNodes: () => w32, getEffectiveInitializer: () => n3, getEffectiveJSDocHost: () => w23, getEffectiveModifierFlags: () => xm2, getEffectiveModifierFlagsAlwaysIncludeJSDoc: () => nS, getEffectiveModifierFlagsNoCache: () => aS, getEffectiveReturnTypeNode: () => zI, getEffectiveSetAccessorTypeAnnotationNode: () => VI, getEffectiveTypeAnnotationNode: () => R23, getEffectiveTypeParameterDeclarations: () => UC, getEffectiveTypeRoots: () => getEffectiveTypeRoots, getElementOrPropertyAccessArgumentExpressionOrName: () => mm, getElementOrPropertyAccessName: () => ao5, getElementsOfBindingOrAssignmentPattern: () => L82, getEmitDeclarations: () => Q23, getEmitFlags: () => ai7, getEmitHelpers: () => getEmitHelpers, getEmitModuleDetectionKind: () => OS, getEmitModuleKind: () => _i6, getEmitModuleResolutionKind: () => N_, getEmitScriptTarget: () => Ql4, getEmitStandardClassFields: () => PO, getEnclosingBlockScopeContainer: () => A02, getEnclosingContainer: () => tD, getEncodedSemanticClassifications: () => getEncodedSemanticClassifications, getEncodedSyntacticClassifications: () => getEncodedSyntacticClassifications, getEndLinePosition: () => CT, getEntityNameFromTypeNode: () => eP, getEntrypointsFromPackageJsonInfo: () => getEntrypointsFromPackageJsonInfo, getErrorCountForSummary: () => getErrorCountForSummary, getErrorSpanForNode: () => a2, getErrorSummaryText: () => getErrorSummaryText, getEscapedTextOfIdentifierOrLiteral: () => P32, getEscapedTextOfJsxAttributeName: () => LM2, getEscapedTextOfJsxNamespacedName: () => Yl3, getExpandoInitializer: () => E_, getExportAssignmentExpression: () => T32, getExportInfoMap: () => getExportInfoMap, getExportNeedsImportStarHelper: () => getExportNeedsImportStarHelper, getExpressionAssociativity: () => gI, getExpressionPrecedence: () => bI, getExternalHelpersModuleName: () => P82, getExternalModuleImportEqualsDeclarationExpression: () => aP, getExternalModuleName: () => T23, getExternalModuleNameFromDeclaration: () => PI, getExternalModuleNameFromPath: () => M23, getExternalModuleNameLiteral: () => aR, getExternalModuleRequireArgument: () => oP, getFallbackOptions: () => getFallbackOptions, getFileEmitOutput: () => getFileEmitOutput, getFileMatcherPatterns: () => RS, getFileNamesFromConfigSpecs: () => getFileNamesFromConfigSpecs, getFileWatcherEventKind: () => getFileWatcherEventKind, getFilesInErrorForSummary: () => getFilesInErrorForSummary, getFirstConstructorWithBody: () => V32, getFirstIdentifier: () => oN, getFirstNonSpaceCharacterPosition: () => getFirstNonSpaceCharacterPosition, getFirstProjectOutput: () => getFirstProjectOutput, getFixableErrorSpanExpression: () => getFixableErrorSpanExpression, getFormatCodeSettingsForWriting: () => getFormatCodeSettingsForWriting, getFullWidth: () => _m, getFunctionFlags: () => oI, getHeritageClause: () => ym2, getHostSignatureFromJSDoc: () => x23, getIdentifierAutoGenerate: () => getIdentifierAutoGenerate, getIdentifierGeneratedImportReference: () => getIdentifierGeneratedImportReference, getIdentifierTypeArguments: () => getIdentifierTypeArguments, getImmediatelyInvokedFunctionExpression: () => $D, getImpliedNodeFormatForFile: () => getImpliedNodeFormatForFile, getImpliedNodeFormatForFileWorker: () => getImpliedNodeFormatForFileWorker, getImportNeedsImportDefaultHelper: () => getImportNeedsImportDefaultHelper, getImportNeedsImportStarHelper: () => getImportNeedsImportStarHelper, getIndentSize: () => Fo4, getIndentString: () => N23, getInferredLibraryNameResolveFrom: () => getInferredLibraryNameResolveFrom, getInitializedVariables: () => LN, getInitializerOfBinaryExpression: () => s3, getInitializerOfBindingOrAssignmentElement: () => O8, getInterfaceBaseTypeNodes: () => C32, getInternalEmitFlags: () => Rk, getInvokedExpression: () => tP, getIsolatedModules: () => G23, getJSDocAugmentsTag: () => L42, getJSDocClassTag: () => kC, getJSDocCommentRanges: () => qT, getJSDocCommentsAndTags: () => f32, getJSDocDeprecatedTag: () => OC, getJSDocDeprecatedTagNoCache: () => q42, getJSDocEnumTag: () => MC, getJSDocHost: () => m3, getJSDocImplementsTags: () => J42, getJSDocOverrideTagNoCache: () => U42, getJSDocParameterTags: () => em2, getJSDocParameterTagsNoCache: () => I42, getJSDocPrivateTag: () => PC, getJSDocPrivateTagNoCache: () => j42, getJSDocProtectedTag: () => IC, getJSDocProtectedTagNoCache: () => F42, getJSDocPublicTag: () => DC, getJSDocPublicTagNoCache: () => R42, getJSDocReadonlyTag: () => NC, getJSDocReadonlyTagNoCache: () => B42, getJSDocReturnTag: () => z42, getJSDocReturnType: () => W42, getJSDocRoot: () => E23, getJSDocSatisfiesExpressionType: () => MM, getJSDocSatisfiesTag: () => Mg, getJSDocTags: () => zl3, getJSDocTagsNoCache: () => RC, getJSDocTemplateTag: () => JC, getJSDocThisTag: () => LC, getJSDocType: () => nm, getJSDocTypeAliasName: () => rg, getJSDocTypeAssertionType: () => ZJ, getJSDocTypeParameterDeclarations: () => X32, getJSDocTypeParameterTags: () => O42, getJSDocTypeParameterTagsNoCache: () => M42, getJSDocTypeTag: () => tm2, getJSXImplicitImportBase: () => LO, getJSXRuntimeImport: () => JO, getJSXTransformEnabled: () => MO, getKeyForCompilerOptions: () => getKeyForCompilerOptions, getLanguageVariant: () => q0, getLastChild: () => wS, getLeadingCommentRanges: () => Ho2, getLeadingCommentRangesOfNode: () => xD, getLeftmostAccessExpression: () => W23, getLeftmostExpression: () => nO, getLibraryNameFromLibFileName: () => getLibraryNameFromLibFileName, getLineAndCharacterOfPosition: () => no3, getLineInfo: () => getLineInfo, getLineOfLocalPosition: () => jI, getLineOfLocalPositionFromLineMap: () => Ta4, getLineStartPositionForPosition: () => getLineStartPositionForPosition, getLineStarts: () => Aa4, getLinesBetweenPositionAndNextNonWhitespaceCharacter: () => NN, getLinesBetweenPositionAndPrecedingNonWhitespaceCharacter: () => IN, getLinesBetweenPositions: () => T_, getLinesBetweenRangeEndAndRangeStart: () => kN, getLinesBetweenRangeEndPositions: () => DN, getLiteralText: () => jk, getLocalNameForExternalImport: () => iR, getLocalSymbolForExportDefault: () => pN, getLocaleSpecificMessage: () => I_, getLocaleTimeString: () => getLocaleTimeString, getMappedContextSpan: () => getMappedContextSpan, getMappedDocumentSpan: () => getMappedDocumentSpan, getMappedLocation: () => getMappedLocation, getMatchedFileSpec: () => getMatchedFileSpec, getMatchedIncludeSpec: () => getMatchedIncludeSpec, getMeaningFromDeclaration: () => getMeaningFromDeclaration, getMeaningFromLocation: () => getMeaningFromLocation, getMembersOfDeclaration: () => kD, getModeForFileReference: () => getModeForFileReference, getModeForResolutionAtIndex: () => getModeForResolutionAtIndex, getModeForUsageLocation: () => getModeForUsageLocation, getModifiedTime: () => getModifiedTime, getModifiers: () => gd, getModuleInstanceState: () => getModuleInstanceState, getModuleNameStringLiteralAt: () => getModuleNameStringLiteralAt, getModuleSpecifierEndingPreference: () => $O, getModuleSpecifierResolverHost: () => getModuleSpecifierResolverHost, getNameForExportedSymbol: () => getNameForExportedSymbol, getNameFromIndexInfo: () => rD, getNameFromPropertyName: () => getNameFromPropertyName, getNameOfAccessExpression: () => KN, getNameOfCompilerOptionValue: () => getNameOfCompilerOptionValue, getNameOfDeclaration: () => ql4, getNameOfExpando: () => vP, getNameOfJSDocTypedef: () => k42, getNameOrArgument: () => a3, getNameTable: () => TF, getNamesForExportedSymbol: () => getNamesForExportedSymbol, getNamespaceDeclarationNode: () => c32, getNewLineCharacter: () => hS, getNewLineKind: () => getNewLineKind, getNewLineOrDefaultFromHost: () => getNewLineOrDefaultFromHost, getNewTargetContainer: () => GD, getNextJSDocCommentLocation: () => d32, getNodeForGeneratedName: () => BR, getNodeId: () => getNodeId, getNodeKind: () => getNodeKind, getNodeModifiers: () => getNodeModifiers, getNodeModulePathParts: () => AM, getNonAssignedNameOfDeclaration: () => Zd, getNonAssignmentOperatorForCompoundAssignment: () => getNonAssignmentOperatorForCompoundAssignment, getNonAugmentationDeclaration: () => JT, getNonDecoratorTokenPosOfNode: () => Ok, getNormalizedAbsolutePath: () => Gi6, getNormalizedAbsolutePathWithoutRoot: () => XE, getNormalizedPathComponents: () => Hd, getObjectFlags: () => jf, getOperator: () => I23, getOperatorAssociativity: () => O32, getOperatorPrecedence: () => M32, getOptionFromName: () => getOptionFromName, getOptionsForLibraryResolution: () => getOptionsForLibraryResolution, getOptionsNameMap: () => getOptionsNameMap, getOrCreateEmitNode: () => getOrCreateEmitNode, getOrCreateExternalHelpersModuleNameIfNeeded: () => I8, getOrUpdate: () => h9, getOriginalNode: () => Bl3, getOriginalNodeId: () => getOriginalNodeId, getOriginalSourceFile: () => yI, getOutputDeclarationFileName: () => getOutputDeclarationFileName, getOutputExtension: () => getOutputExtension, getOutputFileNames: () => getOutputFileNames, getOutputPathsFor: () => getOutputPathsFor, getOutputPathsForBundle: () => getOutputPathsForBundle, getOwnEmitOutputFilePath: () => II, getOwnKeys: () => fg, getOwnValues: () => U92, getPackageJsonInfo: () => getPackageJsonInfo, getPackageJsonTypesVersionsPaths: () => getPackageJsonTypesVersionsPaths, getPackageJsonsVisibleToFile: () => getPackageJsonsVisibleToFile, getPackageNameFromTypesPackageName: () => getPackageNameFromTypesPackageName, getPackageScopeForPath: () => getPackageScopeForPath, getParameterSymbolFromJSDoc: () => LP, getParameterTypeNode: () => kM, getParentNodeInSpan: () => getParentNodeInSpan, getParseTreeNode: () => Ul3, getParsedCommandLineOfConfigFile: () => getParsedCommandLineOfConfigFile, getPathComponents: () => Oi5, getPathComponentsRelativeTo: () => wg, getPathFromPathComponents: () => Wo2, getPathUpdater: () => getPathUpdater, getPathsBasePath: () => MI, getPatternFromSpec: () => WO, getPendingEmitKind: () => getPendingEmitKind, getPositionOfLineAndCharacter: () => aC, getPossibleGenericSignatures: () => getPossibleGenericSignatures, getPossibleOriginalInputExtensionForExtension: () => OI, getPossibleTypeArgumentsInfo: () => getPossibleTypeArgumentsInfo, getPreEmitDiagnostics: () => getPreEmitDiagnostics, getPrecedingNonSpaceCharacterPosition: () => getPrecedingNonSpaceCharacterPosition, getPrivateIdentifier: () => getPrivateIdentifier, getProperties: () => getProperties, getProperty: () => xv, getPropertyArrayElementValue: () => jD, getPropertyAssignmentAliasLikeExpression: () => ZP, getPropertyNameForPropertyNameNode: () => vd, getPropertyNameForUniqueESSymbol: () => _I, getPropertyNameFromType: () => BM2, getPropertyNameOfBindingOrAssignmentElement: () => cR, getPropertySymbolFromBindingElement: () => getPropertySymbolFromBindingElement, getPropertySymbolsFromContextualType: () => l7, getQuoteFromPreference: () => getQuoteFromPreference, getQuotePreference: () => getQuotePreference, getRangesWhere: () => T9, getRefactorContextSpan: () => getRefactorContextSpan, getReferencedFileLocation: () => getReferencedFileLocation, getRegexFromPattern: () => Bf, getRegularExpressionForWildcard: () => Ff, getRegularExpressionsForWildcards: () => Z23, getRelativePathFromDirectory: () => Xv, getRelativePathFromFile: () => ZE, getRelativePathToDirectoryOrUrl: () => Eg, getRenameLocation: () => getRenameLocation, getReplacementSpanForContextToken: () => getReplacementSpanForContextToken, getResolutionDiagnostic: () => getResolutionDiagnostic, getResolutionModeOverride: () => getResolutionModeOverride, getResolveJsonModule: () => MS, getResolvePackageJsonExports: () => EO, getResolvePackageJsonImports: () => CO, getResolvedExternalModuleName: () => B32, getRestIndicatorOfBindingOrAssignmentElement: () => _R, getRestParameterElementType: () => AD, getRightMostAssignedExpression: () => y23, getRootDeclaration: () => gm2, getRootDirectoryOfResolutionCache: () => getRootDirectoryOfResolutionCache, getRootLength: () => Ni7, getRootPathSplitLength: () => getRootPathSplitLength, getScriptKind: () => getScriptKind, getScriptKindFromFileName: () => FS, getScriptTargetFeatures: () => ux, getSelectedEffectiveModifierFlags: () => eS, getSelectedSyntacticModifierFlags: () => tS, getSemanticClassifications: () => getSemanticClassifications, getSemanticJsxChildren: () => vI, getSetAccessorTypeAnnotationNode: () => FI, getSetAccessorValueParameter: () => L23, getSetExternalModuleIndicator: () => NS, getShebang: () => r4, getSingleInitializerOfVariableStatementOrPropertyDeclaration: () => S23, getSingleVariableOfVariableStatement: () => Al4, getSnapshotText: () => getSnapshotText, getSnippetElement: () => getSnippetElement, getSourceFileOfModule: () => Tk, getSourceFileOfNode: () => oi6, getSourceFilePathInNewDir: () => z32, getSourceFilePathInNewDirWorker: () => vm2, getSourceFileVersionAsHashFromText: () => getSourceFileVersionAsHashFromText, getSourceFilesToEmit: () => LI, getSourceMapRange: () => getSourceMapRange, getSourceMapper: () => getSourceMapper, getSourceTextOfNodeFromSourceFile: () => Qo3, getSpanOfTokenAtPosition: () => Ks6, getSpellingSuggestion: () => Iv, getStartPositionOfLine: () => wk, getStartPositionOfRange: () => p_, getStartsOnNewLine: () => getStartsOnNewLine, getStaticPropertiesAndClassStaticBlock: () => getStaticPropertiesAndClassStaticBlock, getStrictOptionValue: () => Y23, getStringComparer: () => dg, getSuperCallFromStatement: () => getSuperCallFromStatement, getSuperContainer: () => XD, getSupportedCodeFixes: () => o7, getSupportedExtensions: () => BS, getSupportedExtensionsWithJsonIfResolveJsonModule: () => US, getSwitchedType: () => getSwitchedType, getSymbolId: () => getSymbolId, getSymbolNameForPrivateIdentifier: () => cI, getSymbolTarget: () => getSymbolTarget, getSyntacticClassifications: () => getSyntacticClassifications, getSyntacticModifierFlags: () => U23, getSyntacticModifierFlagsNoCache: () => q23, getSynthesizedDeepClone: () => getSynthesizedDeepClone, getSynthesizedDeepCloneWithReplacements: () => getSynthesizedDeepCloneWithReplacements, getSynthesizedDeepClones: () => getSynthesizedDeepClones, getSynthesizedDeepClonesWithReplacements: () => getSynthesizedDeepClonesWithReplacements, getSyntheticLeadingComments: () => getSyntheticLeadingComments, getSyntheticTrailingComments: () => getSyntheticTrailingComments, getTargetLabel: () => getTargetLabel, getTargetOfBindingOrAssignmentElement: () => Ro3, getTemporaryModuleResolutionState: () => getTemporaryModuleResolutionState, getTextOfConstantValue: () => Bk, getTextOfIdentifierOrLiteral: () => Td, getTextOfJSDocComment: () => FC, getTextOfJsxAttributeName: () => JM2, getTextOfJsxNamespacedName: () => Kl4, getTextOfNode: () => cm, getTextOfNodeFromSourceText: () => n_, getTextOfPropertyName: () => aD, getThisContainer: () => f23, getThisParameter: () => H32, getTokenAtPosition: () => getTokenAtPosition, getTokenPosOfNode: () => $o3, getTokenSourceMapRange: () => getTokenSourceMapRange, getTouchingPropertyName: () => getTouchingPropertyName, getTouchingToken: () => getTouchingToken, getTrailingCommentRanges: () => n4, getTrailingSemicolonDeferringWriter: () => DI, getTransformFlagsSubtreeExclusions: () => Mx, getTransformers: () => getTransformers, getTsBuildInfoEmitOutputFilePath: () => getTsBuildInfoEmitOutputFilePath, getTsConfigObjectLiteralExpression: () => VT, getTsConfigPropArrayElementValue: () => FD, getTypeAnnotationNode: () => qI, getTypeArgumentOrTypeParameterList: () => getTypeArgumentOrTypeParameterList, getTypeKeywordOfTypeOnlyImport: () => getTypeKeywordOfTypeOnlyImport, getTypeNode: () => getTypeNode, getTypeNodeIfAccessible: () => getTypeNodeIfAccessible, getTypeParameterFromJsDoc: () => RP, getTypeParameterOwner: () => SC, getTypesPackageName: () => getTypesPackageName, getUILocale: () => lE, getUniqueName: () => getUniqueName, getUniqueSymbolId: () => getUniqueSymbolId, getUseDefineForClassFields: () => DO, getWatchErrorSummaryDiagnosticMessage: () => getWatchErrorSummaryDiagnosticMessage, getWatchFactory: () => getWatchFactory, group: () => H9, groupBy: () => G92, guessIndentation: () => ek, handleNoEmitOptions: () => handleNoEmitOptions, hasAbstractModifier: () => K32, hasAccessorModifier: () => F23, hasAmbientModifier: () => Z32, hasChangesInResolutions: () => bk, hasChildOfKind: () => hasChildOfKind, hasContextSensitiveParameters: () => SM, hasDecorators: () => kl4, hasDocComment: () => hasDocComment, hasDynamicName: () => D32, hasEffectiveModifier: () => j23, hasEffectiveModifiers: () => QI, hasEffectiveReadonlyModifier: () => j02, hasExtension: () => Wv, hasIndexSignature: () => hasIndexSignature, hasInitializer: () => ST, hasInvalidEscape: () => L32, hasJSDocNodes: () => Hi7, hasJSDocParameterTags: () => AC2, hasJSFileExtension: () => eb, hasJsonModuleEmitEnabled: () => gO, hasOnlyExpressionInitializer: () => KA, hasOverrideModifier: () => KI, hasPossibleExternalModuleReference: () => eD, hasProperty: () => Wn6, hasPropertyAccessExpressionWithName: () => hasPropertyAccessExpressionWithName, hasQuestionToken: () => PP, hasRecordedExternalHelpers: () => nR, hasResolutionModeOverride: () => UM2, hasRestParameter: () => tk, hasScopeMarker: () => kA, hasStaticModifier: () => Sm, hasSyntacticModifier: () => Cn4, hasSyntacticModifiers: () => YI, hasTSFileExtension: () => tb, hasTabstop: () => ix, hasTrailingDirectorySeparator: () => Vd, hasType: () => YA, hasTypeArguments: () => jP, hasZeroOrOneAsteriskCharacter: () => RO, helperString: () => helperString, hostGetCanonicalFileName: () => F32, hostUsesCaseSensitiveFileNames: () => O23, idText: () => Lt9, identifierIsThisKeyword: () => G32, identifierToKeywordKind: () => E42, identity: () => bt9, identitySourceMapConsumer: () => identitySourceMapConsumer, ignoreSourceNewlines: () => ignoreSourceNewlines, ignoredPaths: () => ignoredPaths, importDefaultHelper: () => importDefaultHelper, importFromModuleSpecifier: () => kP, importNameElisionDisabled: () => bO, importStarHelper: () => importStarHelper, indexOfAnyCharCode: () => dv, indexOfNode: () => Jk, indicesOf: () => ug, inferredTypesContainingFile: () => inferredTypesContainingFile, injectClassNamedEvaluationHelperBlockIfMissing: () => injectClassNamedEvaluationHelperBlockIfMissing, injectClassThisAssignmentIfMissing: () => injectClassThisAssignmentIfMissing, insertImports: () => insertImports, insertLeadingStatement: () => zJ, insertSorted: () => vl4, insertStatementAfterCustomPrologue: () => Pk, insertStatementAfterStandardPrologue: () => Dk, insertStatementsAfterCustomPrologue: () => kk, insertStatementsAfterStandardPrologue: () => Ak, intersperse: () => i9, intrinsicTagNameToString: () => jM2, introducesArgumentsExoticObject: () => ND, inverseJsxOptionMap: () => inverseJsxOptionMap, isAbstractConstructorSymbol: () => HN, isAbstractModifier: () => vL, isAccessExpression: () => Ko2, isAccessibilityModifier: () => isAccessibilityModifier, isAccessor: () => am, isAccessorModifier: () => SL, isAliasSymbolDeclaration: () => KP, isAliasableExpression: () => A23, isAmbientModule: () => lm, isAmbientPropertyDeclaration: () => Qk, isAnonymousFunctionDefinition: () => Zs5, isAnyDirectorySeparator: () => vg, isAnyImportOrBareOrAccessedRequire: () => Kk, isAnyImportOrReExport: () => pm, isAnyImportSyntax: () => t23, isAnySupportedFileExtension: () => nM, isApplicableVersionedTypesKey: () => isApplicableVersionedTypesKey, isArgumentExpressionOfElementAccess: () => isArgumentExpressionOfElementAccess, isArray: () => $t9, isArrayBindingElement: () => mA, isArrayBindingOrAssignmentElement: () => lT, isArrayBindingOrAssignmentPattern: () => cT, isArrayBindingPattern: () => AL, isArrayLiteralExpression: () => iu5, isArrayLiteralOrObjectLiteralDestructuringPattern: () => isArrayLiteralOrObjectLiteralDestructuringPattern, isArrayTypeNode: () => Hx, isArrowFunction: () => Nm, isAsExpression: () => LL, isAssertClause: () => rJ, isAssertEntry: () => iJ, isAssertionExpression: () => CA, isAssertsKeyword: () => yL, isAssignmentDeclaration: () => O02, isAssignmentExpression: () => si6, isAssignmentOperator: () => A_, isAssignmentPattern: () => oT, isAssignmentTarget: () => BP, isAsteriskToken: () => pL, isAsyncFunction: () => sI, isAsyncModifier: () => _l4, isAutoAccessorPropertyDeclaration: () => aT, isAwaitExpression: () => IL, isAwaitKeyword: () => gL, isBigIntLiteral: () => db, isBinaryExpression: () => At9, isBinaryOperatorToken: () => LR, isBindableObjectDefinePropertyCall: () => b23, isBindableStaticAccessExpression: () => _s7, isBindableStaticElementAccessExpression: () => v23, isBindableStaticNameExpression: () => Yo3, isBindingElement: () => ru5, isBindingElementOfBareOrAccessedRequire: () => pP, isBindingName: () => _A, isBindingOrAssignmentElement: () => hA, isBindingOrAssignmentPattern: () => yA, isBindingPattern: () => om, isBlock: () => au4, isBlockOrCatchScoped: () => qk, isBlockScope: () => RT, isBlockScopedContainerTopLevel: () => Gk, isBooleanLiteral: () => cA, isBreakOrContinueStatement: () => GC, isBreakStatement: () => GL, isBuildInfoFile: () => isBuildInfoFile, isBuilderProgram: () => isBuilderProgram2, isBundle: () => gJ, isBundleFileTextLike: () => ZN, isCallChain: () => T0, isCallExpression: () => R_, isCallExpressionTarget: () => isCallExpressionTarget, isCallLikeExpression: () => uT, isCallLikeOrFunctionLikeExpression: () => vA, isCallOrNewExpression: () => TA, isCallOrNewExpressionTarget: () => isCallOrNewExpressionTarget, isCallSignatureDeclaration: () => yb, isCallToHelper: () => isCallToHelper, isCaseBlock: () => eJ, isCaseClause: () => mJ, isCaseKeyword: () => xL, isCaseOrDefaultClause: () => QA, isCatchClause: () => hJ, isCatchClauseVariableDeclaration: () => KS, isCatchClauseVariableDeclarationOrBindingElement: () => OT, isCheckJsEnabledForFile: () => rM, isChildOfNodeWithKind: () => wD, isCircularBuildOrder: () => isCircularBuildOrder, isClassDeclaration: () => es7, isClassElement: () => io5, isClassExpression: () => Ol4, isClassInstanceProperty: () => uA, isClassLike: () => ar8, isClassMemberModifier: () => nT, isClassNamedEvaluationHelperBlock: () => isClassNamedEvaluationHelperBlock, isClassOrTypeElement: () => fA, isClassStaticBlockDeclaration: () => eu4, isClassThisAssignmentBlock: () => isClassThisAssignmentBlock, isCollapsedRange: () => SN, isColonToken: () => fL, isCommaExpression: () => Bm3, isCommaListExpression: () => j_, isCommaSequence: () => KJ, isCommaToken: () => jx, isComment: () => isComment, isCommonJsExportPropertyAssignment: () => u22, isCommonJsExportedExpression: () => PD, isCompoundAssignment: () => isCompoundAssignment, isComputedNonLiteralName: () => iD, isComputedPropertyName: () => oo4, isConciseBody: () => NA, isConditionalExpression: () => NL, isConditionalTypeNode: () => Kx, isConstTypeReference: () => X42, isConstructSignatureDeclaration: () => zx, isConstructorDeclaration: () => L_, isConstructorTypeNode: () => bb, isContextualKeyword: () => k23, isContinueStatement: () => HL, isCustomPrologue: () => fm, isDebuggerStatement: () => ZL, isDeclaration: () => Xo3, isDeclarationBindingElement: () => Hg, isDeclarationFileName: () => W82, isDeclarationName: () => g3, isDeclarationNameOfEnumOrNamespace: () => MN, isDeclarationReadonly: () => yD, isDeclarationStatement: () => zA, isDeclarationWithTypeParameterChildren: () => jT, isDeclarationWithTypeParameters: () => Yk, isDecorator: () => M_, isDecoratorTarget: () => isDecoratorTarget, isDefaultClause: () => f8, isDefaultImport: () => l3, isDefaultModifier: () => hL, isDefaultedExpandoInitializer: () => bP, isDeleteExpression: () => DL, isDeleteTarget: () => XP, isDeprecatedDeclaration: () => isDeprecatedDeclaration, isDestructuringAssignment: () => aN, isDiagnosticWithLocation: () => isDiagnosticWithLocation, isDiskPathRoot: () => qE, isDoStatement: () => qL, isDocumentRegistryEntry: () => isDocumentRegistryEntry, isDotDotDotToken: () => uL, isDottedName: () => B0, isDynamicName: () => P23, isESSymbolIdentifier: () => pI, isEffectiveExternalModule: () => e22, isEffectiveModuleDeclaration: () => MT, isEffectiveStrictModeSourceFile: () => $k, isElementAccessChain: () => G42, isElementAccessExpression: () => Ki6, isEmittedFileOfProgram: () => isEmittedFileOfProgram, isEmptyArrayLiteral: () => uN, isEmptyBindingElement: () => x42, isEmptyBindingPattern: () => S42, isEmptyObjectLiteral: () => lN, isEmptyStatement: () => BL, isEmptyStringLiteral: () => XT, isEntityName: () => sA, isEntityNameExpression: () => co4, isEnumConst: () => hD, isEnumDeclaration: () => Pb, isEnumMember: () => m8, isEqualityOperatorKind: () => isEqualityOperatorKind, isEqualsGreaterThanToken: () => mL, isExclamationToken: () => Id, isExcludedFile: () => isExcludedFile, isExclusivelyTypeOnlyImportOrExport: () => isExclusivelyTypeOnlyImportOrExport, isExpandoPropertyDeclaration: () => sx, isExportAssignment: () => ps7, isExportDeclaration: () => F_, isExportModifier: () => Fx, isExportName: () => YJ, isExportNamespaceAsDefaultDeclaration: () => NT, isExportOrDefaultModifier: () => RR, isExportSpecifier: () => p8, isExportsIdentifier: () => r32, isExportsOrModuleExportsOrAlias: () => isExportsOrModuleExportsOrAlias, isExpression: () => sm, isExpressionNode: () => m2, isExpressionOfExternalModuleImportEqualsDeclaration: () => isExpressionOfExternalModuleImportEqualsDeclaration, isExpressionOfOptionalChainRoot: () => WC, isExpressionStatement: () => ou4, isExpressionWithTypeArguments: () => Cb, isExpressionWithTypeArgumentsInClassExtendsClause: () => F0, isExternalModule: () => ns6, isExternalModuleAugmentation: () => Zg, isExternalModuleImportEqualsDeclaration: () => YT, isExternalModuleIndicator: () => PA, isExternalModuleNameRelative: () => pC, isExternalModuleReference: () => Jm, isExternalModuleSymbol: () => isExternalModuleSymbol, isExternalOrCommonJsModule: () => mD, isFileLevelReservedGeneratedIdentifier: () => aA, isFileLevelUniqueName: () => AT, isFileProbablyExternalModule: () => gl4, isFirstDeclarationOfSymbolParameter: () => isFirstDeclarationOfSymbolParameter, isFixablePromiseHandler: () => isFixablePromiseHandler, isForInOrOfStatement: () => IA, isForInStatement: () => WL, isForInitializer: () => MA, isForOfStatement: () => VL, isForStatement: () => s8, isFunctionBlock: () => WT, isFunctionBody: () => OA, isFunctionDeclaration: () => us7, isFunctionExpression: () => Im, isFunctionExpressionOrArrowFunction: () => ZS, isFunctionLike: () => $i7, isFunctionLikeDeclaration: () => rT, isFunctionLikeKind: () => qg, isFunctionLikeOrClassStaticBlockDeclaration: () => im, isFunctionOrConstructorTypeNode: () => dA, isFunctionOrModuleBlock: () => lA, isFunctionSymbol: () => CP, isFunctionTypeNode: () => tu4, isFutureReservedKeyword: () => tI, isGeneratedIdentifier: () => va3, isGeneratedPrivateIdentifier: () => Bg, isGetAccessor: () => rl5, isGetAccessorDeclaration: () => d_, isGetOrSetAccessorDeclaration: () => zC, isGlobalDeclaration: () => isGlobalDeclaration, isGlobalScopeAugmentation: () => um, isGrammarError: () => Ck, isHeritageClause: () => Ml3, isHoistedFunction: () => D02, isHoistedVariableStatement: () => P02, isIdentifier: () => Ae10, isIdentifierANonContextualKeyword: () => iI, isIdentifierName: () => YP, isIdentifierOrThisTypeNode: () => dR, isIdentifierPart: () => Ka3, isIdentifierStart: () => yr6, isIdentifierText: () => Ig, isIdentifierTypePredicate: () => JD, isIdentifierTypeReference: () => mM, isIfStatement: () => UL, isIgnoredFileFromWildCardWatching: () => isIgnoredFileFromWildCardWatching, isImplicitGlob: () => LS, isImportAttribute: () => oJ, isImportAttributeName: () => iA, isImportAttributes: () => aJ, isImportCall: () => s22, isImportClause: () => tJ, isImportDeclaration: () => Ob, isImportEqualsDeclaration: () => Nb, isImportKeyword: () => Ux, isImportMeta: () => k02, isImportOrExportSpecifier: () => tA, isImportOrExportSpecifierName: () => isImportOrExportSpecifierName, isImportSpecifier: () => l8, isImportTypeAssertionContainer: () => nJ, isImportTypeNode: () => nu5, isImportableFile: () => isImportableFile, isInComment: () => isInComment, isInCompoundLikeAssignment: () => qP, isInExpressionContext: () => $T, isInJSDoc: () => KT, isInJSFile: () => Vt5, isInJSXText: () => isInJSXText, isInJsonFile: () => cP, isInNonReferenceComment: () => isInNonReferenceComment, isInReferenceComment: () => isInReferenceComment, isInRightSideOfInternalImportEqualsDeclaration: () => isInRightSideOfInternalImportEqualsDeclaration, isInString: () => isInString, isInTemplateString: () => isInTemplateString, isInTopLevelContext: () => HD, isInTypeQuery: () => BI, isIncrementalCompilation: () => kO, isIndexSignatureDeclaration: () => gb, isIndexedAccessTypeNode: () => t82, isInferTypeNode: () => Zx, isInfinityOrNaNString: () => xM, isInitializedProperty: () => isInitializedProperty, isInitializedVariable: () => bS, isInsideJsxElement: () => isInsideJsxElement, isInsideJsxElementOrAttribute: () => isInsideJsxElementOrAttribute, isInsideNodeModules: () => isInsideNodeModules, isInsideTemplateLiteral: () => isInsideTemplateLiteral, isInstanceOfExpression: () => pS, isInstantiatedModule: () => isInstantiatedModule, isInterfaceDeclaration: () => su4, isInternalDeclaration: () => isInternalDeclaration, isInternalModuleImportEqualsDeclaration: () => sP, isInternalName: () => QJ, isIntersectionTypeNode: () => Yx, isIntrinsicJsxName: () => j32, isIterationStatement: () => mT, isJSDoc: () => ds7, isJSDocAllType: () => xJ, isJSDocAugmentsTag: () => jm, isJSDocAuthorTag: () => DJ, isJSDocCallbackTag: () => PJ, isJSDocClassTag: () => g8, isJSDocCommentContainingNode: () => TT, isJSDocConstructSignature: () => IP, isJSDocDeprecatedTag: () => Wb, isJSDocEnumTag: () => v82, isJSDocFunctionType: () => Rm, isJSDocImplementsTag: () => S8, isJSDocIndexSignature: () => uP, isJSDocLikeText: () => B82, isJSDocLink: () => vJ, isJSDocLinkCode: () => TJ, isJSDocLinkLike: () => dl4, isJSDocLinkPlain: () => SJ, isJSDocMemberName: () => r_, isJSDocNameReference: () => Wf, isJSDocNamepathType: () => kJ, isJSDocNamespaceBody: () => RA, isJSDocNode: () => $g, isJSDocNonNullableType: () => EJ, isJSDocNullableType: () => y8, isJSDocOptionalParameter: () => ax, isJSDocOptionalType: () => CJ, isJSDocOverloadTag: () => zb, isJSDocOverrideTag: () => b8, isJSDocParameterTag: () => m_, isJSDocPrivateTag: () => Bb, isJSDocPropertyLikeTag: () => Rg, isJSDocPropertyTag: () => MJ, isJSDocProtectedTag: () => Ub, isJSDocPublicTag: () => Fb, isJSDocReadonlyTag: () => qb, isJSDocReturnTag: () => Vb, isJSDocSatisfiesExpression: () => OM, isJSDocSatisfiesTag: () => Hb, isJSDocSeeTag: () => IJ, isJSDocSignature: () => cu4, isJSDocTag: () => Qg, isJSDocTemplateTag: () => ts9, isJSDocThisTag: () => T8, isJSDocThrowsTag: () => LJ, isJSDocTypeAlias: () => Xl4, isJSDocTypeAssertion: () => D8, isJSDocTypeExpression: () => h8, isJSDocTypeLiteral: () => jb, isJSDocTypeTag: () => lu5, isJSDocTypedefTag: () => NJ, isJSDocUnknownTag: () => OJ, isJSDocUnknownType: () => wJ, isJSDocVariadicType: () => AJ, isJSXTagName: () => Lf, isJsonEqual: () => rb, isJsonSourceFile: () => o2, isJsxAttribute: () => pJ, isJsxAttributeLike: () => XA, isJsxAttributeName: () => RM, isJsxAttributes: () => Rb, isJsxChild: () => bT, isJsxClosingElement: () => zf, isJsxClosingFragment: () => uJ, isJsxElement: () => tg, isJsxExpression: () => dJ, isJsxFragment: () => yl4, isJsxNamespacedName: () => B_, isJsxOpeningElement: () => Jo2, isJsxOpeningFragment: () => Jb, isJsxOpeningLikeElement: () => vT, isJsxOpeningLikeElementTagName: () => isJsxOpeningLikeElementTagName, isJsxSelfClosingElement: () => lJ, isJsxSpreadAttribute: () => fJ, isJsxTagNameExpression: () => GA, isJsxText: () => Pd, isJumpStatementTarget: () => isJumpStatementTarget, isKeyword: () => ki6, isKeywordOrPunctuation: () => Rf, isKnownSymbol: () => lI, isLabelName: () => isLabelName, isLabelOfLabeledStatement: () => isLabelOfLabeledStatement, isLabeledStatement: () => _8, isLateVisibilityPaintedStatement: () => Zk, isLeftHandSideExpression: () => jo2, isLeftHandSideOfAssignment: () => iN, isLet: () => vD, isLineBreak: () => On7, isLiteralComputedPropertyDeclarationName: () => b32, isLiteralExpression: () => Fg, isLiteralExpressionOfObject: () => KC, isLiteralImportTypeNode: () => _23, isLiteralKind: () => jg, isLiteralLikeAccess: () => Jf, isLiteralLikeElementAccess: () => Gl4, isLiteralNameOfPropertyDeclarationOrIndexAccess: () => isLiteralNameOfPropertyDeclarationOrIndexAccess, isLiteralTypeLikeExpression: () => gR, isLiteralTypeLiteral: () => wA, isLiteralTypeNode: () => xb, isLocalName: () => ng, isLogicalOperator: () => tN, isLogicalOrCoalescingAssignmentExpression: () => nN, isLogicalOrCoalescingAssignmentOperator: () => wm2, isLogicalOrCoalescingBinaryExpression: () => rN, isLogicalOrCoalescingBinaryOperator: () => sS, isMappedTypeNode: () => n8, isMemberName: () => ro3, isMetaProperty: () => Ab, isMethodDeclaration: () => f_, isMethodOrAccessor: () => zg, isMethodSignature: () => qx, isMinusToken: () => hb, isMissingDeclaration: () => _J, isModifier: () => Ug, isModifierKind: () => Ei6, isModifierLike: () => Mf, isModuleAugmentationExternal: () => LT2, isModuleBlock: () => c8, isModuleBody: () => LA, isModuleDeclaration: () => Zi6, isModuleExportsAccessExpression: () => g22, isModuleIdentifier: () => i32, isModuleName: () => yR, isModuleOrEnumDeclaration: () => FA, isModuleReference: () => HA, isModuleSpecifierLike: () => isModuleSpecifierLike, isModuleWithStringLiteralName: () => zk, isNameOfFunctionDeclaration: () => isNameOfFunctionDeclaration, isNameOfModuleDeclaration: () => isNameOfModuleDeclaration, isNamedClassElement: () => pA, isNamedDeclaration: () => Kd, isNamedEvaluation: () => fI, isNamedEvaluationSource: () => N32, isNamedExportBindings: () => XC, isNamedExports: () => u8, isNamedImportBindings: () => jA, isNamedImports: () => sJ, isNamedImportsOrExports: () => eO, isNamedTupleMember: () => vb, isNamespaceBody: () => JA, isNamespaceExport: () => Lm, isNamespaceExportDeclaration: () => Ib, isNamespaceImport: () => Mb, isNamespaceReexportDeclaration: () => iP, isNewExpression: () => r8, isNewExpressionTarget: () => isNewExpressionTarget, isNoSubstitutionTemplateLiteral: () => Rx, isNode: () => QC, isNodeArray: () => ha4, isNodeArrayMultiLine: () => PN, isNodeDescendantOf: () => $P, isNodeKind: () => Wl3, isNodeLikeSystem: () => PE, isNodeModulesDirectory: () => eC, isNodeWithPossibleHoistedDeclaration: () => zP, isNonContextualKeyword: () => k32, isNonExportDefaultModifier: () => jR, isNonGlobalAmbientModule: () => Wk, isNonGlobalDeclaration: () => isNonGlobalDeclaration, isNonNullAccess: () => NM, isNonNullChain: () => $42, isNonNullExpression: () => Uo2, isNonStaticMethodOrAccessorWithPrivateName: () => isNonStaticMethodOrAccessorWithPrivateName, isNotEmittedOrPartiallyEmittedNode: () => AA, isNotEmittedStatement: () => Lb, isNullishCoalesce: () => HC, isNumber: () => tE, isNumericLiteral: () => lo5, isNumericLiteralName: () => ex, isObjectBindingElementWithoutPropertyName: () => isObjectBindingElementWithoutPropertyName, isObjectBindingOrAssignmentElement: () => _T, isObjectBindingOrAssignmentPattern: () => sT, isObjectBindingPattern: () => CL, isObjectLiteralElement: () => x0, isObjectLiteralElementLike: () => Vg, isObjectLiteralExpression: () => uo4, isObjectLiteralMethod: () => MD, isObjectLiteralOrClassExpressionMethodOrAccessor: () => LD, isObjectTypeDeclaration: () => YN, isOctalDigit: () => Nf, isOmittedExpression: () => Mm, isOptionalChain: () => Lg, isOptionalChainRoot: () => Jg, isOptionalDeclaration: () => IM, isOptionalJSDocPropertyLikeTag: () => rx, isOptionalTypeNode: () => Xx, isOuterExpression: () => Um2, isOutermostOptionalChain: () => VC, isOverrideModifier: () => TL, isPackedArrayLiteral: () => bM, isParameter: () => Pa4, isParameterDeclaration: () => mI, isParameterOrCatchClauseVariable: () => wM, isParameterPropertyDeclaration: () => T4, isParameterPropertyModifier: () => tT, isParenthesizedExpression: () => cs7, isParenthesizedTypeNode: () => Tb, isParseTreeNode: () => xl4, isPartOfTypeNode: () => c23, isPartOfTypeQuery: () => QT, isPartiallyEmittedExpression: () => o8, isPatternMatch: () => hg, isPinnedComment: () => IT, isPlainJsFile: () => Sk, isPlusToken: () => mb, isPossiblyTypeArgumentPosition: () => isPossiblyTypeArgumentPosition, isPostfixUnaryExpression: () => a8, isPrefixUnaryExpression: () => Om, isPrivateIdentifier: () => Vn6, isPrivateIdentifierClassElementDeclaration: () => eT, isPrivateIdentifierPropertyAccessExpression: () => oA, isPrivateIdentifierSymbol: () => uI, isProgramBundleEmitBuildInfo: () => isProgramBundleEmitBuildInfo, isProgramUptoDate: () => isProgramUptoDate, isPrologueDirective: () => Sa3, isPropertyAccessChain: () => H42, isPropertyAccessEntityNameExpression: () => lS, isPropertyAccessExpression: () => Ln6, isPropertyAccessOrQualifiedName: () => bA, isPropertyAccessOrQualifiedNameOrImportTypeNode: () => gA, isPropertyAssignment: () => fs7, isPropertyDeclaration: () => Ia3, isPropertyName: () => Vl4, isPropertyNameLiteral: () => L0, isPropertySignature: () => Zl4, isProtoSetter: () => I32, isPrototypeAccess: () => k_, isPrototypePropertyAssignment: () => xP, isPunctuation: () => A32, isPushOrUnshiftIdentifier: () => dI, isQualifiedName: () => O_, isQuestionDotToken: () => dL, isQuestionOrExclamationToken: () => fR, isQuestionOrPlusOrMinusToken: () => hR, isQuestionToken: () => Nl4, isRawSourceMap: () => isRawSourceMap, isReadonlyKeyword: () => Bx, isReadonlyKeywordOrPlusOrMinusToken: () => mR, isRecognizedTripleSlashComment: () => Ik, isReferenceFileLocation: () => isReferenceFileLocation, isReferencedFile: () => isReferencedFile, isRegularExpressionLiteral: () => sL, isRequireCall: () => Hl4, isRequireVariableStatement: () => t32, isRestParameter: () => xT, isRestTypeNode: () => $x, isReturnStatement: () => XL, isReturnStatementWithFixablePromiseHandler: () => isReturnStatementWithFixablePromiseHandler, isRightSideOfAccessExpression: () => uS, isRightSideOfInstanceofExpression: () => cN, isRightSideOfPropertyAccess: () => isRightSideOfPropertyAccess, isRightSideOfQualifiedName: () => isRightSideOfQualifiedName, isRightSideOfQualifiedNameOrPropertyAccess: () => sN, isRightSideOfQualifiedNameOrPropertyAccessOrJSDocMemberName: () => _N, isRootedDiskPath: () => b_, isSameEntityName: () => u_, isSatisfiesExpression: () => JL, isScopeMarker: () => hT, isSemicolonClassElement: () => FL, isSetAccessor: () => nl5, isSetAccessorDeclaration: () => Zo4, isShebangTrivia: () => Dg, isShiftOperatorOrHigher: () => $b, isShorthandAmbientModuleSymbol: () => Vk, isShorthandPropertyAssignment: () => _u4, isSignedNumericLiteral: () => D23, isSimpleCopiableExpression: () => isSimpleCopiableExpression, isSimpleInlineableExpression: () => isSimpleInlineableExpression, isSingleOrDoubleQuote: () => fP, isSourceFile: () => ci5, isSourceFileFromLibrary: () => isSourceFileFromLibrary, isSourceFileJS: () => h22, isSourceFileNotJS: () => _P, isSourceFileNotJson: () => lP, isSourceMapping: () => isSourceMapping, isSpecialPropertyDeclaration: () => wP, isSpreadAssignment: () => d8, isSpreadElement: () => Eb, isStatement: () => yT, isStatementButNotDeclaration: () => WA, isStatementOrBlock: () => gT, isStatementWithLocals: () => xk, isStatic: () => R02, isStaticModifier: () => bL, isString: () => g_, isStringAKeyword: () => rI, isStringANonContextualKeyword: () => nI, isStringAndEmptyAnonymousObjectIntersection: () => isStringAndEmptyAnonymousObjectIntersection, isStringDoubleQuoted: () => dP, isStringLiteral: () => Tr7, isStringLiteralLike: () => ni6, isStringLiteralOrJsxExpression: () => $A, isStringLiteralOrTemplate: () => isStringLiteralOrTemplate, isStringOrNumericLiteralLike: () => Yi7, isStringOrRegularExpressionOrTemplateLiteral: () => isStringOrRegularExpressionOrTemplateLiteral, isStringTextContainingNode: () => rA, isSuperCall: () => TD, isSuperKeyword: () => qf, isSuperOrSuperProperty: () => QD, isSuperProperty: () => bd, isSupportedSourceFileName: () => YO, isSwitchStatement: () => QL, isSyntaxList: () => JJ, isSyntheticExpression: () => RL, isSyntheticReference: () => cJ, isTagName: () => isTagName, isTaggedTemplateExpression: () => i8, isTaggedTemplateTag: () => isTaggedTemplateTag, isTemplateExpression: () => OL, isTemplateHead: () => _L, isTemplateLiteral: () => SA, isTemplateLiteralKind: () => wl4, isTemplateLiteralToken: () => ZC, isTemplateLiteralTypeNode: () => EL, isTemplateLiteralTypeSpan: () => wL, isTemplateMiddle: () => cL, isTemplateMiddleOrTemplateTail: () => eA, isTemplateSpan: () => jL, isTemplateTail: () => lL, isTextWhiteSpaceLike: () => isTextWhiteSpaceLike, isThis: () => isThis, isThisContainerOrFunctionBlock: () => VD, isThisIdentifier: () => Tm3, isThisInTypeQuery: () => UI, isThisInitializedDeclaration: () => KD, isThisInitializedObjectBindingExpression: () => ZD, isThisProperty: () => YD, isThisTypeNode: () => Sb, isThisTypeParameter: () => tx, isThisTypePredicate: () => RD, isThrowStatement: () => YL, isToken: () => YC, isTokenKind: () => Y43, isTraceEnabled: () => isTraceEnabled, isTransientSymbol: () => E02, isTrivia: () => aI, isTryStatement: () => KL, isTupleTypeNode: () => Gx, isTypeAlias: () => NP, isTypeAliasDeclaration: () => Db, isTypeAssertionExpression: () => kL, isTypeDeclaration: () => nx, isTypeElement: () => Wg, isTypeKeyword: () => isTypeKeyword, isTypeKeywordToken: () => isTypeKeywordToken, isTypeKeywordTokenOrIdentifier: () => isTypeKeywordTokenOrIdentifier, isTypeLiteralNode: () => Pm, isTypeNode: () => S0, isTypeNodeKind: () => ES, isTypeOfExpression: () => PL, isTypeOnlyExportDeclaration: () => Z42, isTypeOnlyImportDeclaration: () => K42, isTypeOnlyImportOrExportDeclaration: () => nA, isTypeOperatorNode: () => e8, isTypeParameterDeclaration: () => Lo3, isTypePredicateNode: () => Wx, isTypeQueryNode: () => Vx, isTypeReferenceNode: () => J_, isTypeReferenceType: () => ZA, isTypeUsableAsPropertyName: () => FM, isUMDExportSymbol: () => XN, isUnaryExpression: () => fT, isUnaryExpressionWithWrite: () => xA, isUnicodeIdentifierStart: () => Kv, isUnionTypeNode: () => Qx, isUnparsedNode: () => $C, isUnparsedPrepend: () => yJ, isUnparsedSource: () => bJ, isUnparsedTextLike: () => Q42, isUrl: () => UE, isValidBigIntString: () => XS, isValidESSymbolDeclaration: () => ID, isValidTypeOnlyAliasUseSite: () => uM, isValueSignatureDeclaration: () => WP, isVarAwaitUsing: () => gD, isVarConst: () => UT, isVarUsing: () => bD, isVariableDeclaration: () => Li6, isVariableDeclarationInVariableStatement: () => zT, isVariableDeclarationInitializedToBareOrAccessedRequire: () => dm2, isVariableDeclarationInitializedToRequire: () => ZT, isVariableDeclarationList: () => kb, isVariableLike: () => l22, isVariableLikeOrAccessor: () => DD, isVariableStatement: () => ls7, isVoidExpression: () => wb, isWatchSet: () => JN, isWhileStatement: () => zL, isWhiteSpaceLike: () => ka4, isWhiteSpaceSingleLine: () => Mo3, isWithStatement: () => $L, isWriteAccess: () => qN, isWriteOnlyAccess: () => UN, isYieldExpression: () => ML, jsxModeNeedsExplicitImport: () => jsxModeNeedsExplicitImport, keywordPart: () => keywordPart, last: () => Ea4, lastOrUndefined: () => Pi7, length: () => eo3, libMap: () => libMap, libs: () => libs, lineBreakPart: () => lineBreakPart, linkNamePart: () => linkNamePart, linkPart: () => linkPart, linkTextPart: () => linkTextPart, listFiles: () => listFiles, loadModuleFromGlobalCache: () => loadModuleFromGlobalCache, loadWithModeAwareCache: () => loadWithModeAwareCache, makeIdentifierFromModuleName: () => Uk, makeImport: () => makeImport, makeImportIfNecessary: () => makeImportIfNecessary, makeStringLiteral: () => makeStringLiteral, mangleScopedPackageName: () => mangleScopedPackageName, map: () => xa3, mapAllOrFail: () => f9, mapDefined: () => wa2, mapDefinedEntries: () => m9, mapDefinedIterator: () => d9, mapEntries: () => v9, mapIterator: () => l9, mapOneOrMany: () => mapOneOrMany, mapToDisplayParts: () => mapToDisplayParts, matchFiles: () => VO, matchPatternOrExact: () => iM, matchedText: () => TE, matchesExclude: () => matchesExclude, maybeBind: () => sn6, maybeSetLocalizedDiagnosticMessages: () => kS, memoize: () => Qf, memoizeCached: () => aE, memoizeOne: () => Fr5, memoizeWeak: () => iE, metadataHelper: () => metadataHelper, min: () => _E, minAndMax: () => oM, missingFileModifiedTime: () => missingFileModifiedTime, modifierToFlag: () => z23, modifiersToFlags: () => hr6, moduleOptionDeclaration: () => moduleOptionDeclaration, moduleResolutionIsEqualTo: () => dk, moduleResolutionNameAndModeGetter: () => moduleResolutionNameAndModeGetter, moduleResolutionOptionDeclarations: () => moduleResolutionOptionDeclarations, moduleResolutionSupportsPackageJsonExportsAndImports: () => $23, moduleResolutionUsesNodeModules: () => moduleResolutionUsesNodeModules, moduleSpecifiers: () => ts_moduleSpecifiers_exports, moveEmitHelpers: () => moveEmitHelpers, moveRangeEnd: () => vN, moveRangePastDecorators: () => yS, moveRangePastModifiers: () => TN, moveRangePos: () => wd, moveSyntheticComments: () => moveSyntheticComments, mutateMap: () => VN, mutateMapSkippingNewValues: () => SS, needsParentheses: () => needsParentheses, needsScopeMarker: () => DA, newCaseClauseTracker: () => newCaseClauseTracker, newPrivateEnvironment: () => newPrivateEnvironment, noEmitNotification: () => noEmitNotification, noEmitSubstitution: () => noEmitSubstitution, noTransformers: () => noTransformers, noTruncationMaximumTruncationLength: () => lx, nodeCanBeDecorated: () => GT, nodeHasName: () => A42, nodeIsDecorated: () => l_, nodeIsMissing: () => Vi6, nodeIsPresent: () => Cl4, nodeIsSynthesized: () => ya5, nodeModuleNameResolver: () => nodeModuleNameResolver, nodeModulesPathPart: () => nodeModulesPathPart, nodeNextJsonConfigResolver: () => nodeNextJsonConfigResolver, nodeOrChildIsDecorated: () => N02, nodeOverlapsWithStartEnd: () => nodeOverlapsWithStartEnd, nodePosToString: () => Ek, nodeSeenTracker: () => nodeSeenTracker, nodeStartsNewLexicalEnvironment: () => hI, nodeToDisplayParts: () => nodeToDisplayParts, noop: () => gr7, noopFileWatcher: () => noopFileWatcher, normalizePath: () => br6, normalizeSlashes: () => Vo2, not: () => wE, notImplemented: () => rE, notImplementedResolver: () => notImplementedResolver, nullNodeConverters: () => nullNodeConverters, nullParenthesizerRules: () => pb, nullTransformationContext: () => nullTransformationContext, objectAllocator: () => Ct11, operatorPart: () => operatorPart, optionDeclarations: () => optionDeclarations, optionMapToObject: () => optionMapToObject, optionsAffectingProgramStructure: () => optionsAffectingProgramStructure, optionsForBuild: () => optionsForBuild, optionsForWatch: () => optionsForWatch, optionsHaveChanges: () => w_, optionsHaveModuleResolutionChanges: () => wT, or: () => yg, orderedRemoveItem: () => gE, orderedRemoveItemAt: () => Nv, outFile: () => bm2, packageIdToPackageName: () => ET, packageIdToString: () => yk, paramHelper: () => paramHelper, parameterIsThisKeyword: () => $l3, parameterNamePart: () => parameterNamePart, parseBaseNodeFactory: () => og, parseBigInt: () => lM, parseBuildCommand: () => parseBuildCommand, parseCommandLine: () => parseCommandLine, parseCommandLineWorker: () => parseCommandLineWorker, parseConfigFileTextToJson: () => parseConfigFileTextToJson, parseConfigFileWithSystem: () => parseConfigFileWithSystem, parseConfigHostFromCompilerHostLike: () => parseConfigHostFromCompilerHostLike, parseCustomTypeOption: () => parseCustomTypeOption, parseIsolatedEntityName: () => nj, parseIsolatedJSDocComment: () => ij, parseJSDocTypeExpressionForTests: () => aj, parseJsonConfigFileContent: () => parseJsonConfigFileContent, parseJsonSourceFileConfigFileContent: () => parseJsonSourceFileConfigFileContent, parseJsonText: () => rj, parseListTypeOption: () => parseListTypeOption, parseNodeFactory: () => q_, parseNodeModuleFromPath: () => parseNodeModuleFromPath, parsePackageName: () => parsePackageName, parsePseudoBigInt: () => Cm2, parseValidBigInt: () => GS, patchWriteFileEnsuringDirectory: () => patchWriteFileEnsuringDirectory, pathContainsNodeModules: () => pathContainsNodeModules, pathIsAbsolute: () => Tg, pathIsBareSpecifier: () => zE, pathIsRelative: () => as5, patternText: () => vE, perfLogger: () => Zf2, performIncrementalCompilation: () => performIncrementalCompilation, performance: () => ts_performance_exports, plainJSErrors: () => plainJSErrors, positionBelongsToNode: () => positionBelongsToNode, positionIsASICandidate: () => positionIsASICandidate, positionIsSynthesized: () => Da4, positionsAreOnSameLine: () => D_, preProcessFile: () => preProcessFile, probablyUsesSemicolons: () => probablyUsesSemicolons, processCommentPragmas: () => V82, processPragmasIntoFields: () => H8, processTaggedTemplateExpression: () => processTaggedTemplateExpression, programContainsEsModules: () => programContainsEsModules, programContainsModules: () => programContainsModules, projectReferenceIsEqualTo: () => fk, propKeyHelper: () => propKeyHelper, propertyNamePart: () => propertyNamePart, pseudoBigIntToString: () => ib, punctuationPart: () => punctuationPart, pushIfUnique: () => Ll4, quote: () => quote, quotePreferenceFromString: () => quotePreferenceFromString, rangeContainsPosition: () => rangeContainsPosition, rangeContainsPositionExclusive: () => rangeContainsPositionExclusive, rangeContainsRange: () => rangeContainsRange, rangeContainsRangeExclusive: () => rangeContainsRangeExclusive, rangeContainsStartEnd: () => rangeContainsStartEnd, rangeEndIsOnSameLineAsRangeStart: () => AN, rangeEndPositionsAreOnSameLine: () => CN, rangeEquals: () => M9, rangeIsOnSingleLine: () => wN, rangeOfNode: () => sM, rangeOfTypeParameters: () => _M, rangeOverlapsWithStartEnd: () => rangeOverlapsWithStartEnd, rangeStartIsOnSameLineAsRangeEnd: () => gS, rangeStartPositionsAreOnSameLine: () => EN, readBuilderProgram: () => readBuilderProgram, readConfigFile: () => readConfigFile, readHelper: () => readHelper, readJson: () => bN, readJsonConfigFile: () => readJsonConfigFile, readJsonOrUndefined: () => dS, reduceEachLeadingCommentRange: () => Zv, reduceEachTrailingCommentRange: () => e4, reduceLeft: () => Fd, reduceLeftIterator: () => r9, reducePathComponents: () => Ca3, refactor: () => ts_refactor_exports, regExpEscape: () => qO, relativeComplement: () => I9, removeAllComments: () => removeAllComments, removeEmitHelper: () => removeEmitHelper, removeExtension: () => WS, removeFileExtension: () => Dl3, removeIgnoredPath: () => removeIgnoredPath, removeMinAndVersionNumbers: () => yE, removeOptionality: () => removeOptionality, removePrefix: () => SE, removeSuffix: () => mE, removeTrailingDirectorySeparator: () => v_, repeatString: () => repeatString, replaceElement: () => F9, resolutionExtensionIsTSOrJson: () => tM, resolveConfigFileProjectName: () => resolveConfigFileProjectName, resolveJSModule: () => resolveJSModule, resolveLibrary: () => resolveLibrary, resolveModuleName: () => resolveModuleName, resolveModuleNameFromCache: () => resolveModuleNameFromCache, resolvePackageNameToPackageJson: () => resolvePackageNameToPackageJson, resolvePath: () => g02, resolveProjectReferencePath: () => resolveProjectReferencePath, resolveTripleslashReference: () => resolveTripleslashReference, resolveTypeReferenceDirective: () => resolveTypeReferenceDirective, resolvingEmptyArray: () => _x, restHelper: () => restHelper, returnFalse: () => $f, returnNoopFileWatcher: () => returnNoopFileWatcher, returnTrue: () => Cv, returnUndefined: () => nE, returnsPromise: () => returnsPromise, runInitializersHelper: () => runInitializersHelper, sameFlatMap: () => hv, sameMap: () => u9, sameMapping: () => sameMapping, scanShebangTrivia: () => Pg, scanTokenAtPosition: () => fD, scanner: () => qo3, screenStartingMessageCodes: () => screenStartingMessageCodes, semanticDiagnosticsOptionDeclarations: () => semanticDiagnosticsOptionDeclarations, serializeCompilerOptions: () => serializeCompilerOptions, server: () => k7, servicesVersion: () => u7, setCommentRange: () => setCommentRange, setConfigFileInOptions: () => setConfigFileInOptions, setConstantValue: () => setConstantValue, setEachParent: () => a_, setEmitFlags: () => setEmitFlags, setFunctionNameHelper: () => setFunctionNameHelper, setGetSourceFileAsHashVersioned: () => setGetSourceFileAsHashVersioned, setIdentifierAutoGenerate: () => setIdentifierAutoGenerate, setIdentifierGeneratedImportReference: () => setIdentifierGeneratedImportReference, setIdentifierTypeArguments: () => setIdentifierTypeArguments, setInternalEmitFlags: () => setInternalEmitFlags, setLocalizedDiagnosticMessages: () => AS2, setModuleDefaultHelper: () => setModuleDefaultHelper, setNodeFlags: () => yM, setObjectAllocator: () => CS, setOriginalNode: () => nr6, setParent: () => Qi6, setParentRecursive: () => QS, setPrivateIdentifier: () => setPrivateIdentifier, setSnippetElement: () => setSnippetElement, setSourceMapRange: () => setSourceMapRange, setStackTraceLimit: () => setStackTraceLimit, setStartsOnNewLine: () => setStartsOnNewLine, setSyntheticLeadingComments: () => setSyntheticLeadingComments, setSyntheticTrailingComments: () => setSyntheticTrailingComments, setSys: () => setSys, setSysLog: () => setSysLog, setTextRange: () => We9, setTextRangeEnd: () => $S, setTextRangePos: () => Cd, setTextRangePosEnd: () => Za3, setTextRangePosWidth: () => Ad, setTokenSourceMapRange: () => setTokenSourceMapRange, setTypeNode: () => setTypeNode, setUILocale: () => Pv, setValueDeclaration: () => EP, shouldAllowImportingTsExtension: () => shouldAllowImportingTsExtension, shouldPreserveConstEnums: () => AO, shouldResolveJsRequire: () => wO, shouldUseUriStyleNodeCoreModules: () => shouldUseUriStyleNodeCoreModules, showModuleSpecifier: () => $N, signatureHasLiteralTypes: () => signatureHasLiteralTypes, signatureHasRestParameter: () => signatureHasRestParameter, signatureToDisplayParts: () => signatureToDisplayParts, single: () => R9, singleElementArray: () => Yf, singleIterator: () => g9, singleOrMany: () => j92, singleOrUndefined: () => jd, skipAlias: () => FN, skipAssertions: () => tR, skipConstraint: () => skipConstraint, skipOuterExpressions: () => ms7, skipParentheses: () => C_, skipPartiallyEmittedExpressions: () => rm2, skipTrivia: () => Mt7, skipTypeChecking: () => cM, skipTypeParentheses: () => GP, skipWhile: () => DE, sliceAfter: () => aM, some: () => Ze10, sort: () => Xf, sortAndDeduplicate: () => gv, sortAndDeduplicateDiagnostics: () => fC, sourceFileAffectingCompilerOptions: () => sourceFileAffectingCompilerOptions, sourceFileMayBeEmitted: () => J02, sourceMapCommentRegExp: () => sourceMapCommentRegExp, sourceMapCommentRegExpDontCareLineStart: () => sourceMapCommentRegExpDontCareLineStart, spacePart: () => spacePart, spanMap: () => b9, spreadArrayHelper: () => spreadArrayHelper, stableSort: () => Tv, startEndContainsRange: () => startEndContainsRange, startEndOverlapsWithStartEnd: () => startEndOverlapsWithStartEnd, startOnNewLine: () => qm2, startTracing: () => startTracing, startsWith: () => Hn7, startsWithDirectory: () => YE, startsWithUnderscore: () => startsWithUnderscore, startsWithUseStrict: () => k8, stringContainsAt: () => stringContainsAt, stringToToken: () => Fl3, stripQuotes: () => CI, supportedDeclarationExtensions: () => ub, supportedJSExtensions: () => Y0, supportedJSExtensionsFlat: () => lb, supportedLocaleDirectories: () => Kg, supportedTSExtensions: () => Bo4, supportedTSExtensionsFlat: () => cb, supportedTSImplementationExtensions: () => Px, suppressLeadingAndTrailingTrivia: () => suppressLeadingAndTrailingTrivia, suppressLeadingTrivia: () => suppressLeadingTrivia, suppressTrailingTrivia: () => suppressTrailingTrivia, symbolEscapedNameNoDefault: () => symbolEscapedNameNoDefault, symbolName: () => yd, symbolNameNoDefault: () => symbolNameNoDefault, symbolPart: () => symbolPart, symbolToDisplayParts: () => symbolToDisplayParts, syntaxMayBeASICandidate: () => syntaxMayBeASICandidate, syntaxRequiresTrailingSemicolonOrASI: () => syntaxRequiresTrailingSemicolonOrASI, sys: () => y02, sysLog: () => sysLog, tagNamesAreEquivalent: () => Ai6, takeWhile: () => kE, targetOptionDeclaration: () => targetOptionDeclaration, templateObjectHelper: () => templateObjectHelper, testFormatSettings: () => testFormatSettings, textChangeRangeIsUnchanged: () => v42, textChangeRangeNewSpan: () => Ys5, textChanges: () => ts_textChanges_exports, textOrKeywordPart: () => textOrKeywordPart, textPart: () => textPart, textRangeContainsPositionInclusive: () => mC, textSpanContainsPosition: () => dC, textSpanContainsTextSpan: () => hC, textSpanEnd: () => tn6, textSpanIntersection: () => b42, textSpanIntersectsWith: () => bC, textSpanIntersectsWithPosition: () => vC, textSpanIntersectsWithTextSpan: () => gC, textSpanIsEmpty: () => y42, textSpanOverlap: () => g4, textSpanOverlapsWith: () => yC, textSpansEqual: () => textSpansEqual, textToKeywordObj: () => pl4, timestamp: () => ga3, toArray: () => If, toBuilderFileEmit: () => toBuilderFileEmit, toBuilderStateFileInfoForMultiEmit: () => toBuilderStateFileInfoForMultiEmit, toEditorSettings: () => ll4, toFileNameLowerCase: () => kv, toLowerCase: () => Av, toPath: () => Di5, toProgramEmitPending: () => toProgramEmitPending, tokenIsIdentifierOrKeyword: () => wt9, tokenIsIdentifierOrKeywordOrGreaterThan: () => Yv, tokenToString: () => en6, trace: () => trace, tracing: () => ba3, tracingEnabled: () => tracingEnabled, transform: () => transform, transformClassFields: () => transformClassFields, transformDeclarations: () => transformDeclarations, transformECMAScriptModule: () => transformECMAScriptModule, transformES2015: () => transformES2015, transformES2016: () => transformES2016, transformES2017: () => transformES2017, transformES2018: () => transformES2018, transformES2019: () => transformES2019, transformES2020: () => transformES2020, transformES2021: () => transformES2021, transformES5: () => transformES5, transformESDecorators: () => transformESDecorators, transformESNext: () => transformESNext, transformGenerators: () => transformGenerators, transformJsx: () => transformJsx, transformLegacyDecorators: () => transformLegacyDecorators, transformModule: () => transformModule, transformNamedEvaluation: () => transformNamedEvaluation, transformNodeModule: () => transformNodeModule, transformNodes: () => transformNodes, transformSystemModule: () => transformSystemModule, transformTypeScript: () => transformTypeScript, transpile: () => transpile, transpileModule: () => transpileModule, transpileOptionValueCompilerOptions: () => transpileOptionValueCompilerOptions, tryAddToSet: () => y9, tryAndIgnoreErrors: () => tryAndIgnoreErrors, tryCast: () => Ur6, tryDirectoryExists: () => tryDirectoryExists, tryExtractTSExtension: () => dN, tryFileExists: () => tryFileExists, tryGetClassExtendingExpressionWithTypeArguments: () => _S, tryGetClassImplementingOrExtendingExpressionWithTypeArguments: () => cS, tryGetDirectories: () => tryGetDirectories, tryGetExtensionFromPath: () => nb, tryGetImportFromModuleSpecifier: () => _32, tryGetJSDocSatisfiesTypeNode: () => ox, tryGetModuleNameFromFile: () => N8, tryGetModuleSpecifierFromDeclaration: () => AP, tryGetNativePerformanceHooks: () => ME, tryGetPropertyAccessOrIdentifierToString: () => U02, tryGetPropertyNameOfBindingOrAssignmentElement: () => M8, tryGetSourceMappingURL: () => tryGetSourceMappingURL, tryGetTextOfPropertyName: () => n22, tryIOAndConsumeErrors: () => tryIOAndConsumeErrors, tryParsePattern: () => VS, tryParsePatterns: () => eM, tryParseRawSourceMap: () => tryParseRawSourceMap, tryReadDirectory: () => tryReadDirectory, tryReadFile: () => tryReadFile, tryRemoveDirectoryPrefix: () => UO, tryRemoveExtension: () => zS, tryRemovePrefix: () => Lv, tryRemoveSuffix: () => hE, typeAcquisitionDeclarations: () => typeAcquisitionDeclarations, typeAliasNamePart: () => typeAliasNamePart, typeDirectiveIsEqualTo: () => gk, typeKeywords: () => typeKeywords, typeParameterNamePart: () => typeParameterNamePart, typeReferenceResolutionNameAndModeGetter: () => typeReferenceResolutionNameAndModeGetter, typeToDisplayParts: () => typeToDisplayParts, unchangedPollThresholds: () => unchangedPollThresholds, unchangedTextChangeRange: () => Yg, unescapeLeadingUnderscores: () => Go3, unmangleScopedPackageName: () => unmangleScopedPackageName, unorderedRemoveItem: () => Ov, unorderedRemoveItemAt: () => mg, unreachableCodeIsError: () => vO, unusedLabelIsError: () => TO, unwrapInnermostStatementOfLabel: () => OD, updateErrorForNoInputFiles: () => updateErrorForNoInputFiles, updateLanguageServiceSourceFile: () => _7, updateMissingFilePathsWatch: () => updateMissingFilePathsWatch, updatePackageJsonWatch: () => updatePackageJsonWatch, updateResolutionField: () => updateResolutionField, updateSharedExtendedConfigFileWatcher: () => updateSharedExtendedConfigFileWatcher, updateSourceFile: () => Yb, updateWatchingWildcardDirectories: () => updateWatchingWildcardDirectories, usesExtensionsOnImports: () => qS, usingSingleLineStringWriter: () => pk, utf16EncodeAsString: () => Of, validateLocaleAndSetLanguage: () => EC, valuesHelper: () => valuesHelper, version: () => Gf, versionMajorMinor: () => Rd, visitArray: () => visitArray, visitCommaListElements: () => visitCommaListElements, visitEachChild: () => visitEachChild, visitFunctionBody: () => visitFunctionBody, visitIterationBody: () => visitIterationBody, visitLexicalEnvironment: () => visitLexicalEnvironment, visitNode: () => visitNode, visitNodes: () => visitNodes2, visitParameterList: () => visitParameterList, walkUpBindingElementsAndPatterns: () => w42, walkUpLexicalEnvironments: () => walkUpLexicalEnvironments, walkUpOuterExpressions: () => eR, walkUpParenthesizedExpressions: () => y32, walkUpParenthesizedTypes: () => VP, walkUpParenthesizedTypesAndGetParentAndChild: () => HP, whitespaceOrMapCommentRegExp: () => whitespaceOrMapCommentRegExp, writeCommentRange: () => XI, writeFile: () => JI, writeFileEnsuringDirectories: () => RI, zipWith: () => iy });
|
|
302403
|
+
_g(D7, { ANONYMOUS: () => ANONYMOUS, AccessFlags: () => jy, AssertionLevel: () => _y2, AssignmentDeclarationKind: () => Gy, AssignmentKind: () => V02, Associativity: () => G0, BreakpointResolver: () => ts_BreakpointResolver_exports, BuilderFileEmit: () => BuilderFileEmit, BuilderProgramKind: () => BuilderProgramKind, BuilderState: () => BuilderState, BundleFileSectionKind: () => f02, CallHierarchy: () => ts_CallHierarchy_exports, CharacterCodes: () => o02, CheckFlags: () => Oy2, CheckMode: () => CheckMode, ClassificationType: () => ClassificationType, ClassificationTypeNames: () => ClassificationTypeNames, CommentDirectiveType: () => hy, Comparison: () => ry, CompletionInfoFlags: () => CompletionInfoFlags, CompletionTriggerKind: () => CompletionTriggerKind, Completions: () => ts_Completions_exports, ContainerFlags: () => ContainerFlags, ContextFlags: () => wy2, Debug: () => I7, DiagnosticCategory: () => ud, Diagnostics: () => B8, DocumentHighlights: () => DocumentHighlights, ElementFlags: () => Ry, EmitFlags: () => md, EmitHint: () => l02, EmitOnly: () => by2, EndOfLineState: () => EndOfLineState, EnumKind: () => Ny, ExitStatus: () => Ty2, ExportKind: () => ExportKind, Extension: () => s02, ExternalEmitHelpers: () => c02, FileIncludeKind: () => yy2, FilePreprocessingDiagnosticsKind: () => gy2, FileSystemEntryKind: () => FileSystemEntryKind, FileWatcherEventKind: () => FileWatcherEventKind, FindAllReferences: () => ts_FindAllReferences_exports, FlattenLevel: () => FlattenLevel, FlowFlags: () => Tl4, ForegroundColorEscapeSequences: () => ForegroundColorEscapeSequences, FunctionFlags: () => H0, GeneratedIdentifierFlags: () => dy2, GetLiteralTextFlags: () => W0, GoToDefinition: () => ts_GoToDefinition_exports, HighlightSpanKind: () => HighlightSpanKind, IdentifierNameMap: () => IdentifierNameMap, IdentifierNameMultiMap: () => IdentifierNameMultiMap, ImportKind: () => ImportKind, ImportsNotUsedAsValues: () => t02, IndentStyle: () => IndentStyle, IndexFlags: () => Fy, IndexKind: () => qy, InferenceFlags: () => Vy, InferencePriority: () => Wy, InlayHintKind: () => InlayHintKind, InlayHints: () => ts_InlayHints_exports, InternalEmitFlags: () => _0, InternalSymbolName: () => My, InvalidatedProjectKind: () => InvalidatedProjectKind, JSDocParsingMode: () => h02, JsDoc: () => ts_JsDoc_exports, JsTyping: () => ts_JsTyping_exports, JsxEmit: () => e02, JsxFlags: () => fy, JsxReferenceKind: () => By, LanguageServiceMode: () => LanguageServiceMode, LanguageVariant: () => i02, LexicalEnvironmentFlags: () => p0, ListFormat: () => d02, LogLevel: () => ly, MemberOverrideStatus: () => Sy2, ModifierFlags: () => id, ModuleDetectionKind: () => $y, ModuleInstanceState: () => ModuleInstanceState, ModuleKind: () => Zy, ModuleResolutionKind: () => Xy, ModuleSpecifierEnding: () => K0, NavigateTo: () => ts_NavigateTo_exports, NavigationBar: () => ts_NavigationBar_exports, NewLineKind: () => n02, NodeBuilderFlags: () => Ey2, NodeCheckFlags: () => Ly, NodeFactoryFlags: () => Z0, NodeFlags: () => rd, NodeResolutionFeatures: () => NodeResolutionFeatures, ObjectFlags: () => cd, OperationCanceledException: () => od, OperatorPrecedence: () => X02, OrganizeImports: () => ts_OrganizeImports_exports, OrganizeImportsMode: () => OrganizeImportsMode, OuterExpressionKinds: () => u02, OutliningElementsCollector: () => ts_OutliningElementsCollector_exports, OutliningSpanKind: () => OutliningSpanKind, OutputFileType: () => OutputFileType, PackageJsonAutoImportPreference: () => PackageJsonAutoImportPreference, PackageJsonDependencyGroup: () => PackageJsonDependencyGroup, PatternMatchKind: () => PatternMatchKind, PollingInterval: () => PollingInterval, PollingWatchKind: () => Ky, PragmaKindFlags: () => m02, PrivateIdentifierKind: () => PrivateIdentifierKind, ProcessLevel: () => ProcessLevel, ProgramUpdateLevel: () => ProgramUpdateLevel, QuotePreference: () => QuotePreference, RelationComparisonResult: () => ad, Rename: () => ts_Rename_exports, ScriptElementKind: () => ScriptElementKind, ScriptElementKindModifier: () => ScriptElementKindModifier, ScriptKind: () => pd, ScriptSnapshot: () => ScriptSnapshot, ScriptTarget: () => r0, SemanticClassificationFormat: () => SemanticClassificationFormat, SemanticMeaning: () => SemanticMeaning, SemicolonPreference: () => SemicolonPreference, SignatureCheckMode: () => SignatureCheckMode, SignatureFlags: () => ld, SignatureHelp: () => ts_SignatureHelp_exports, SignatureKind: () => Uy, SmartSelectionRange: () => ts_SmartSelectionRange_exports, SnippetKind: () => dd, SortKind: () => oy, StructureIsReused: () => vy2, SymbolAccessibility: () => ky2, SymbolDisplay: () => ts_SymbolDisplay_exports, SymbolDisplayPartKind: () => SymbolDisplayPartKind, SymbolFlags: () => sd, SymbolFormatFlags: () => Ay2, SyntaxKind: () => nd, SyntheticSymbolKind: () => Dy, Ternary: () => Hy, ThrottledCancellationToken: () => v7, TokenClass: () => TokenClass, TokenFlags: () => my2, TransformFlags: () => fd, TypeFacts: () => TypeFacts, TypeFlags: () => _d, TypeFormatFlags: () => Cy2, TypeMapKind: () => zy, TypePredicateKind: () => Py, TypeReferenceSerializationKind: () => Iy, UnionReduction: () => xy2, UpToDateStatusType: () => UpToDateStatusType, VarianceFlags: () => Jy, Version: () => Version, VersionRange: () => VersionRange, WatchDirectoryFlags: () => a02, WatchDirectoryKind: () => Yy, WatchFileKind: () => Qy, WatchLogLevel: () => WatchLogLevel, WatchType: () => WatchType, accessPrivateIdentifier: () => accessPrivateIdentifier, addDisposableResourceHelper: () => addDisposableResourceHelper, addEmitFlags: () => addEmitFlags, addEmitHelper: () => addEmitHelper, addEmitHelpers: () => addEmitHelpers, addInternalEmitFlags: () => addInternalEmitFlags, addNodeFactoryPatcher: () => HM, addObjectAllocatorPatcher: () => cO, addRange: () => zn6, addRelatedInfo: () => ol4, addSyntheticLeadingComment: () => addSyntheticLeadingComment, addSyntheticTrailingComment: () => addSyntheticTrailingComment, addToSeen: () => QN, advancedAsyncSuperHelper: () => advancedAsyncSuperHelper, affectsDeclarationPathOptionDeclarations: () => affectsDeclarationPathOptionDeclarations, affectsEmitOptionDeclarations: () => affectsEmitOptionDeclarations, allKeysStartWithDot: () => allKeysStartWithDot, altDirectorySeparator: () => Cg, and: () => xE, append: () => Et11, appendIfUnique: () => bv, arrayFrom: () => Bd, arrayIsEqualTo: () => D9, arrayIsHomogeneous: () => hM, arrayIsSorted: () => A9, arrayOf: () => q9, arrayReverseIterator: () => O9, arrayToMap: () => W92, arrayToMultiMap: () => Ev, arrayToNumericMap: () => V9, arraysEqual: () => fv, assertType: () => EE, assign: () => z9, assignHelper: () => assignHelper, asyncDelegator: () => asyncDelegator, asyncGeneratorHelper: () => asyncGeneratorHelper, asyncSuperHelper: () => asyncSuperHelper, asyncValues: () => asyncValues, attachFileToDiagnostics: () => Ya3, awaitHelper: () => awaitHelper, awaiterHelper: () => awaiterHelper, base64decode: () => gN, base64encode: () => yN, binarySearch: () => Jl4, binarySearchKey: () => Sv, bindSourceFile: () => bindSourceFile, breakIntoCharacterSpans: () => breakIntoCharacterSpans, breakIntoWordSpans: () => breakIntoWordSpans, buildLinkParts: () => buildLinkParts, buildOpts: () => buildOpts, buildOverload: () => buildOverload, bundlerModuleNameResolver: () => bundlerModuleNameResolver, canBeConvertedToAsync: () => canBeConvertedToAsync, canHaveDecorators: () => F8, canHaveExportModifier: () => DM2, canHaveFlowNode: () => MP, canHaveIllegalDecorators: () => uR, canHaveIllegalModifiers: () => pR, canHaveIllegalType: () => lR, canHaveIllegalTypeParameters: () => J82, canHaveJSDoc: () => hm, canHaveLocals: () => UA, canHaveModifiers: () => U_, canHaveSymbol: () => BA, canJsonReportNoInputFiles: () => canJsonReportNoInputFiles, canProduceDiagnostics: () => canProduceDiagnostics, canUsePropertyAccess: () => PM, canWatchAffectingLocation: () => canWatchAffectingLocation, canWatchAtTypes: () => canWatchAtTypes, canWatchDirectoryOrFile: () => canWatchDirectoryOrFile, cartesianProduct: () => AE, cast: () => wi6, chainBundle: () => chainBundle, chainDiagnosticMessages: () => il4, changeAnyExtension: () => Vv, changeCompilerHostLikeToUseCache: () => changeCompilerHostLikeToUseCache, changeExtension: () => ZO, changesAffectModuleResolution: () => sk, changesAffectingProgramStructure: () => _k, childIsDecorated: () => d23, classElementOrClassElementParameterIsDecorated: () => rP, classHasClassThisAssignment: () => classHasClassThisAssignment, classHasDeclaredOrExplicitlyAssignedName: () => classHasDeclaredOrExplicitlyAssignedName, classHasExplicitlyAssignedName: () => classHasExplicitlyAssignedName, classOrConstructorParameterIsDecorated: () => nP, classPrivateFieldGetHelper: () => classPrivateFieldGetHelper, classPrivateFieldInHelper: () => classPrivateFieldInHelper, classPrivateFieldSetHelper: () => classPrivateFieldSetHelper, classicNameResolver: () => classicNameResolver, classifier: () => ts_classifier_exports, cleanExtendedConfigCache: () => cleanExtendedConfigCache, clear: () => c9, clearMap: () => WN, clearSharedExtendedConfigFileWatcher: () => clearSharedExtendedConfigFileWatcher, climbPastPropertyAccess: () => climbPastPropertyAccess, climbPastPropertyOrElementAccess: () => climbPastPropertyOrElementAccess, clone: () => X9, cloneCompilerOptions: () => cloneCompilerOptions, closeFileWatcher: () => RN, closeFileWatcherOf: () => closeFileWatcherOf, codefix: () => ts_codefix_exports, collapseTextChangeRangesAcrossMultipleVersions: () => TC, collectExternalModuleInfo: () => collectExternalModuleInfo, combine: () => N9, combinePaths: () => Qt7, commentPragmas: () => Wd, commonOptionsWithBuild: () => commonOptionsWithBuild, commonPackageFolders: () => Q0, compact: () => P9, compareBooleans: () => fE, compareDataObjects: () => TS, compareDiagnostics: () => H23, compareDiagnosticsSkipRelatedInformation: () => Ed, compareEmitHelpers: () => compareEmitHelpers, compareNumberOfDirectorySeparators: () => KO, comparePaths: () => Hv, comparePathsCaseInsensitive: () => QE, comparePathsCaseSensitive: () => $E, comparePatternKeys: () => comparePatternKeys, compareProperties: () => pE, compareStringsCaseInsensitive: () => qd, compareStringsCaseInsensitiveEslintCompatible: () => cE, compareStringsCaseSensitive: () => Ii6, compareStringsCaseSensitiveUI: () => uE, compareTextSpans: () => sE, compareValues: () => Mn6, compileOnSaveCommandLineOption: () => compileOnSaveCommandLineOption, compilerOptionsAffectDeclarationPath: () => OO, compilerOptionsAffectEmit: () => NO, compilerOptionsAffectSemanticDiagnostics: () => IO, compilerOptionsDidYouMeanDiagnostics: () => compilerOptionsDidYouMeanDiagnostics, compilerOptionsIndicateEsModules: () => compilerOptionsIndicateEsModules, compose: () => oE, computeCommonSourceDirectoryOfFilenames: () => computeCommonSourceDirectoryOfFilenames, computeLineAndCharacterOfPosition: () => kg, computeLineOfPosition: () => __, computeLineStarts: () => Gd, computePositionOfLineAndCharacter: () => Ag, computeSignature: () => computeSignature, computeSignatureWithDiagnostics: () => computeSignatureWithDiagnostics, computeSuggestionDiagnostics: () => computeSuggestionDiagnostics, concatenate: () => h_, concatenateDiagnosticMessageChains: () => fO, consumesNodeCoreModules: () => consumesNodeCoreModules, contains: () => rs6, containsIgnoredPath: () => YS, containsObjectRestOrSpread: () => Qb, containsParseError: () => El4, containsPath: () => Gv, convertCompilerOptionsForTelemetry: () => convertCompilerOptionsForTelemetry, convertCompilerOptionsFromJson: () => convertCompilerOptionsFromJson, convertJsonOption: () => convertJsonOption, convertToBase64: () => fS, convertToJson: () => convertToJson, convertToObject: () => convertToObject, convertToOptionsWithAbsolutePaths: () => convertToOptionsWithAbsolutePaths, convertToRelativePath: () => KE2, convertToTSConfig: () => convertToTSConfig, convertTypeAcquisitionFromJson: () => convertTypeAcquisitionFromJson, copyComments: () => copyComments, copyEntries: () => uk, copyLeadingComments: () => copyLeadingComments, copyProperties: () => Q9, copyTrailingAsLeadingComments: () => copyTrailingAsLeadingComments, copyTrailingComments: () => copyTrailingComments, couldStartTrivia: () => sC, countWhere: () => s9, createAbstractBuilder: () => createAbstractBuilder, createAccessorPropertyBackingField: () => zR, createAccessorPropertyGetRedirector: () => WR, createAccessorPropertySetRedirector: () => VR, createBaseNodeFactory: () => Nx, createBinaryExpressionTrampoline: () => JR, createBindingHelper: () => createBindingHelper, createBuildInfo: () => createBuildInfo, createBuilderProgram: () => createBuilderProgram, createBuilderProgramUsingProgramBuildInfo: () => createBuilderProgramUsingProgramBuildInfo, createBuilderStatusReporter: () => createBuilderStatusReporter, createCacheWithRedirects: () => createCacheWithRedirects, createCacheableExportInfoMap: () => createCacheableExportInfoMap, createCachedDirectoryStructureHost: () => createCachedDirectoryStructureHost, createClassNamedEvaluationHelperBlock: () => createClassNamedEvaluationHelperBlock, createClassThisAssignmentBlock: () => createClassThisAssignmentBlock, createClassifier: () => createClassifier, createCommentDirectivesMap: () => Nk, createCompilerDiagnostic: () => hl4, createCompilerDiagnosticForInvalidCustomType: () => createCompilerDiagnosticForInvalidCustomType, createCompilerDiagnosticFromMessageChain: () => pO, createCompilerHost: () => createCompilerHost, createCompilerHostFromProgramHost: () => createCompilerHostFromProgramHost, createCompilerHostWorker: () => createCompilerHostWorker, createDetachedDiagnostic: () => Po4, createDiagnosticCollection: () => TI, createDiagnosticForFileFromMessageChain: () => lD, createDiagnosticForNode: () => oD, createDiagnosticForNodeArray: () => sD, createDiagnosticForNodeArrayFromMessageChain: () => cD, createDiagnosticForNodeFromMessageChain: () => _D, createDiagnosticForNodeInSourceFile: () => BT, createDiagnosticForRange: () => pD, createDiagnosticMessageChainFromDiagnostic: () => uD, createDiagnosticReporter: () => createDiagnosticReporter, createDocumentPositionMapper: () => createDocumentPositionMapper, createDocumentRegistry: () => createDocumentRegistry, createDocumentRegistryInternal: () => createDocumentRegistryInternal, createEmitAndSemanticDiagnosticsBuilderProgram: () => createEmitAndSemanticDiagnosticsBuilderProgram, createEmitHelperFactory: () => createEmitHelperFactory, createEmptyExports: () => jJ, createExpressionForJsxElement: () => BJ, createExpressionForJsxFragment: () => UJ, createExpressionForObjectLiteralElementLike: () => XJ, createExpressionForPropertyName: () => E8, createExpressionFromEntityName: () => w8, createExternalHelpersImportDeclarationIfNeeded: () => rR, createFileDiagnostic: () => V23, createFileDiagnosticFromMessageChain: () => i22, createForOfBindingStatement: () => qJ, createGetCanonicalFileName: () => zd, createGetSourceFile: () => createGetSourceFile, createGetSymbolAccessibilityDiagnosticForNode: () => createGetSymbolAccessibilityDiagnosticForNode, createGetSymbolAccessibilityDiagnosticForNodeName: () => createGetSymbolAccessibilityDiagnosticForNodeName, createGetSymbolWalker: () => createGetSymbolWalker, createIncrementalCompilerHost: () => createIncrementalCompilerHost, createIncrementalProgram: () => createIncrementalProgram, createInputFiles: () => eL, createInputFilesWithFilePaths: () => Lx, createInputFilesWithFileTexts: () => Jx, createJsxFactoryExpression: () => x8, createLanguageService: () => vF, createLanguageServiceSourceFile: () => Zb, createMemberAccessForPropertyName: () => Fm2, createModeAwareCache: () => createModeAwareCache, createModeAwareCacheKey: () => createModeAwareCacheKey, createModuleNotFoundChain: () => mk, createModuleResolutionCache: () => createModuleResolutionCache, createModuleResolutionLoader: () => createModuleResolutionLoader, createModuleResolutionLoaderUsingGlobalCache: () => createModuleResolutionLoaderUsingGlobalCache, createModuleSpecifierResolutionHost: () => createModuleSpecifierResolutionHost, createMultiMap: () => Ud, createNodeConverters: () => Ox, createNodeFactory: () => Dd, createOptionNameMap: () => createOptionNameMap, createOverload: () => createOverload, createPackageJsonImportFilter: () => createPackageJsonImportFilter, createPackageJsonInfo: () => createPackageJsonInfo, createParenthesizerRules: () => createParenthesizerRules, createPatternMatcher: () => createPatternMatcher, createPrependNodes: () => createPrependNodes, createPrinter: () => createPrinter, createPrinterWithDefaults: () => createPrinterWithDefaults, createPrinterWithRemoveComments: () => createPrinterWithRemoveComments, createPrinterWithRemoveCommentsNeverAsciiEscape: () => createPrinterWithRemoveCommentsNeverAsciiEscape, createPrinterWithRemoveCommentsOmitTrailingSemicolon: () => createPrinterWithRemoveCommentsOmitTrailingSemicolon, createProgram: () => createProgram, createProgramHost: () => createProgramHost, createPropertyNameNodeForIdentifierOrLiteral: () => CM, createQueue: () => Z92, createRange: () => Em2, createRedirectedBuilderProgram: () => createRedirectedBuilderProgram, createResolutionCache: () => createResolutionCache, createRuntimeTypeSerializer: () => createRuntimeTypeSerializer, createScanner: () => ss7, createSemanticDiagnosticsBuilderProgram: () => createSemanticDiagnosticsBuilderProgram, createSet: () => eE, createSolutionBuilder: () => createSolutionBuilder, createSolutionBuilderHost: () => createSolutionBuilderHost, createSolutionBuilderWithWatch: () => createSolutionBuilderWithWatch, createSolutionBuilderWithWatchHost: () => createSolutionBuilderWithWatchHost, createSortedArray: () => C9, createSourceFile: () => z8, createSourceMapGenerator: () => createSourceMapGenerator, createSourceMapSource: () => tL, createSuperAccessVariableStatement: () => createSuperAccessVariableStatement, createSymbolTable: () => ak, createSymlinkCache: () => jO, createSystemWatchFunctions: () => createSystemWatchFunctions, createTextChange: () => createTextChange, createTextChangeFromStartLength: () => createTextChangeFromStartLength, createTextChangeRange: () => Qd, createTextRangeFromNode: () => createTextRangeFromNode, createTextRangeFromSpan: () => createTextRangeFromSpan, createTextSpan: () => S_, createTextSpanFromBounds: () => Xi8, createTextSpanFromNode: () => createTextSpanFromNode, createTextSpanFromRange: () => createTextSpanFromRange, createTextSpanFromStringLiteralLikeContent: () => createTextSpanFromStringLiteralLikeContent, createTextWriter: () => kI, createTokenRange: () => xN, createTypeChecker: () => createTypeChecker, createTypeReferenceDirectiveResolutionCache: () => createTypeReferenceDirectiveResolutionCache, createTypeReferenceResolutionLoader: () => createTypeReferenceResolutionLoader, createUnparsedSourceFile: () => YM2, createWatchCompilerHost: () => createWatchCompilerHost2, createWatchCompilerHostOfConfigFile: () => createWatchCompilerHostOfConfigFile, createWatchCompilerHostOfFilesAndCompilerOptions: () => createWatchCompilerHostOfFilesAndCompilerOptions, createWatchFactory: () => createWatchFactory, createWatchHost: () => createWatchHost, createWatchProgram: () => createWatchProgram, createWatchStatusReporter: () => createWatchStatusReporter, createWriteFileMeasuringIO: () => createWriteFileMeasuringIO, declarationNameToString: () => FT, decodeMappings: () => decodeMappings, decodedTextSpanIntersectsWith: () => Ng2, decorateHelper: () => decorateHelper, deduplicate: () => yv, defaultIncludeSpec: () => defaultIncludeSpec, defaultInitCompilerOptions: () => defaultInitCompilerOptions, defaultMaximumTruncationLength: () => cx, detectSortCaseSensitivity: () => k9, diagnosticCategoryName: () => FE, diagnosticToString: () => diagnosticToString, directoryProbablyExists: () => mS, directorySeparator: () => vr7, displayPart: () => displayPart, displayPartsToString: () => bF, disposeEmitNodes: () => disposeEmitNodes, disposeResourcesHelper: () => disposeResourcesHelper, documentSpansEqual: () => documentSpansEqual, dumpTracingLegend: () => dumpTracingLegend, elementAt: () => jv, elideNodes: () => FR, emitComments: () => Y32, emitDetachedComments: () => GI, emitFiles: () => emitFiles, emitFilesAndReportErrors: () => emitFilesAndReportErrors, emitFilesAndReportErrorsAndGetExitStatus: () => emitFilesAndReportErrorsAndGetExitStatus, emitModuleKindIsNonNodeESM: () => yO, emitNewLineBeforeLeadingCommentOfPosition: () => HI, emitNewLineBeforeLeadingComments: () => $32, emitNewLineBeforeLeadingCommentsOfPosition: () => Q32, emitSkippedWithNoDiagnostics: () => emitSkippedWithNoDiagnostics, emitUsingBuildInfo: () => emitUsingBuildInfo, emptyArray: () => Je9, emptyFileSystemEntries: () => Ix, emptyMap: () => gg, emptyOptions: () => emptyOptions, emptySet: () => Rv, endsWith: () => is7, ensurePathIsNonModuleName: () => Sg, ensureScriptKind: () => jS, ensureTrailingDirectorySeparator: () => to3, entityNameToString: () => Ci6, enumerateInsertsAndDeletes: () => CE, equalOwnProperties: () => wv, equateStringsCaseInsensitive: () => s_, equateStringsCaseSensitive: () => Rl4, equateValues: () => _o4, esDecorateHelper: () => esDecorateHelper, escapeJsxAttributeString: () => R32, escapeLeadingUnderscores: () => qr5, escapeNonAsciiString: () => xd, escapeSnippetText: () => EM, escapeString: () => Sd, every: () => so4, expandPreOrPostfixIncrementOrDecrementExpression: () => $J, explainFiles: () => explainFiles, explainIfFileIsRedirectAndImpliedFormat: () => explainIfFileIsRedirectAndImpliedFormat, exportAssignmentIsAlias: () => M02, exportStarHelper: () => exportStarHelper, expressionResultIsUnused: () => vM, extend: () => $9, extendsHelper: () => extendsHelper, extensionFromPath: () => al4, extensionIsTS: () => HS, extensionsNotSupportingExtensionlessResolution: () => km2, externalHelpersModuleNameText: () => Am2, factory: () => zr5, fileExtensionIs: () => Na4, fileExtensionIsOneOf: () => ii5, fileIncludeReasonToDiagnostics: () => fileIncludeReasonToDiagnostics, fileShouldUseJavaScriptRequire: () => fileShouldUseJavaScriptRequire, filter: () => rr6, filterMutate: () => _9, filterSemanticDiagnostics: () => filterSemanticDiagnostics, find: () => ir6, findAncestor: () => or7, findBestPatternMatch: () => Mv, findChildOfKind: () => findChildOfKind, findComputedPropertyNameCacheAssignment: () => HR, findConfigFile: () => findConfigFile, findContainingList: () => findContainingList, findDiagnosticForNode: () => findDiagnosticForNode, findFirstNonJsxWhitespaceToken: () => findFirstNonJsxWhitespaceToken, findIndex: () => ul4, findLast: () => lg, findLastIndex: () => a9, findListItemInfo: () => findListItemInfo, findMap: () => o9, findModifier: () => findModifier, findNextToken: () => findNextToken, findPackageJson: () => findPackageJson, findPackageJsons: () => findPackageJsons, findPrecedingMatchingToken: () => findPrecedingMatchingToken, findPrecedingToken: () => findPrecedingToken, findSuperStatementIndexPath: () => findSuperStatementIndexPath, findTokenOnLeftOfPosition: () => findTokenOnLeftOfPosition, findUseStrictPrologue: () => A8, first: () => pg, firstDefined: () => cg, firstDefinedIterator: () => n9, firstIterator: () => J92, firstOrOnly: () => firstOrOnly, firstOrUndefined: () => y_, firstOrUndefinedIterator: () => L9, fixupCompilerOptions: () => fixupCompilerOptions, flatMap: () => zo2, flatMapIterator: () => p9, flatMapToMutable: () => mv, flatten: () => o_, flattenCommaList: () => XR, flattenDestructuringAssignment: () => flattenDestructuringAssignment, flattenDestructuringBinding: () => flattenDestructuringBinding, flattenDiagnosticMessageText: () => flattenDiagnosticMessageText, forEach: () => wn5, forEachAncestor: () => ck, forEachAncestorDirectory: () => $v, forEachChild: () => Wt7, forEachChildRecursively: () => ag, forEachEmittedFile: () => forEachEmittedFile, forEachEnclosingBlockScopeContainer: () => nD, forEachEntry: () => lk, forEachExternalModuleToImportFrom: () => forEachExternalModuleToImportFrom, forEachImportClauseDeclaration: () => DP, forEachKey: () => C02, forEachLeadingCommentRange: () => _C, forEachNameInAccessChainWalkingLeft: () => tO, forEachPropertyAssignment: () => p22, forEachResolvedProjectReference: () => forEachResolvedProjectReference, forEachReturnStatement: () => ED, forEachRight: () => t92, forEachTrailingCommentRange: () => cC, forEachTsConfigPropArray: () => HT, forEachUnique: () => forEachUnique, forEachYieldExpression: () => CD, forSomeAncestorDirectory: () => GN, formatColorAndReset: () => formatColorAndReset, formatDiagnostic: () => formatDiagnostic, formatDiagnostics: () => formatDiagnostics, formatDiagnosticsWithColorAndContext: () => formatDiagnosticsWithColorAndContext, formatGeneratedName: () => Nd, formatGeneratedNamePart: () => ig, formatLocation: () => formatLocation, formatMessage: () => uO, formatStringFromArgs: () => P_2, formatting: () => ts_formatting_exports, fullTripleSlashAMDReferencePathRegEx: () => ob, fullTripleSlashReferencePathRegEx: () => ab, generateDjb2Hash: () => generateDjb2Hash, generateTSConfig: () => generateTSConfig, generatorHelper: () => generatorHelper, getAdjustedReferenceLocation: () => getAdjustedReferenceLocation, getAdjustedRenameLocation: () => getAdjustedRenameLocation, getAliasDeclarationFromName: () => v32, getAllAccessorDeclarations: () => J23, getAllDecoratorsOfClass: () => getAllDecoratorsOfClass, getAllDecoratorsOfClassElement: () => getAllDecoratorsOfClassElement, getAllJSDocTags: () => V42, getAllJSDocTagsOfKind: () => jC, getAllKeys: () => B9, getAllProjectOutputs: () => getAllProjectOutputs, getAllSuperTypeNodes: () => E32, getAllUnscopedEmitHelpers: () => getAllUnscopedEmitHelpers, getAllowJSCompilerOption: () => K23, getAllowSyntheticDefaultImports: () => xO, getAncestor: () => eI, getAnyExtensionFromPath: () => hd, getAreDeclarationMapsEnabled: () => SO, getAssignedExpandoInitializer: () => yP, getAssignedName: () => D42, getAssignedNameOfIdentifier: () => getAssignedNameOfIdentifier, getAssignmentDeclarationKind: () => Oa2, getAssignmentDeclarationPropertyAccessKind: () => o3, getAssignmentTargetKind: () => FP, getAutomaticTypeDirectiveNames: () => getAutomaticTypeDirectiveNames, getBaseFileName: () => os6, getBinaryOperatorPrecedence: () => ml4, getBuildInfo: () => getBuildInfo, getBuildInfoFileVersionMap: () => getBuildInfoFileVersionMap, getBuildInfoText: () => getBuildInfoText, getBuildOrderFromAnyBuildOrder: () => getBuildOrderFromAnyBuildOrder, getBuilderCreationParameters: () => getBuilderCreationParameters, getBuilderFileEmit: () => getBuilderFileEmit, getCheckFlags: () => vS, getClassExtendsHeritageElement: () => x32, getClassLikeDeclarationOfSymbol: () => xS, getCombinedLocalAndExportSymbolFlags: () => BN, getCombinedModifierFlags: () => Yd, getCombinedNodeFlags: () => x_, getCombinedNodeFlagsAlwaysIncludeJSDoc: () => xC, getCommentRange: () => getCommentRange, getCommonSourceDirectory: () => getCommonSourceDirectory, getCommonSourceDirectoryOfConfig: () => getCommonSourceDirectoryOfConfig, getCompilerOptionValue: () => z0, getCompilerOptionsDiffValue: () => getCompilerOptionsDiffValue, getConditions: () => getConditions, getConfigFileParsingDiagnostics: () => getConfigFileParsingDiagnostics, getConstantValue: () => getConstantValue, getContainerFlags: () => getContainerFlags, getContainerNode: () => getContainerNode, getContainingClass: () => I0, getContainingClassExcludingClassDecorators: () => WD, getContainingClassStaticBlock: () => qD, getContainingFunction: () => BD, getContainingFunctionDeclaration: () => UD, getContainingFunctionOrClassStaticBlock: () => zD, getContainingNodeArray: () => TM, getContainingObjectLiteralElement: () => c7, getContextualTypeFromParent: () => getContextualTypeFromParent, getContextualTypeFromParentOrAncestorTypeNode: () => getContextualTypeFromParentOrAncestorTypeNode, getCurrentTime: () => getCurrentTime, getDeclarationDiagnostics: () => getDeclarationDiagnostics, getDeclarationEmitExtensionForPath: () => q32, getDeclarationEmitOutputFilePath: () => NI, getDeclarationEmitOutputFilePathWorker: () => U32, getDeclarationFromName: () => QP, getDeclarationModifierFlagsFromSymbol: () => jN, getDeclarationOfKind: () => rk, getDeclarationsOfKind: () => ik, getDeclaredExpandoInitializer: () => mP, getDecorators: () => CC, getDefaultCompilerOptions: () => a7, getDefaultExportInfoWorker: () => getDefaultExportInfoWorker, getDefaultFormatCodeSettings: () => getDefaultFormatCodeSettings, getDefaultLibFileName: () => h4, getDefaultLibFilePath: () => AF, getDefaultLikeExportInfo: () => getDefaultLikeExportInfo, getDiagnosticText: () => getDiagnosticText, getDiagnosticsWithinSpan: () => getDiagnosticsWithinSpan, getDirectoryPath: () => Mi6, getDirectoryToWatchFailedLookupLocation: () => getDirectoryToWatchFailedLookupLocation, getDirectoryToWatchFailedLookupLocationFromTypeRoot: () => getDirectoryToWatchFailedLookupLocationFromTypeRoot, getDocumentPositionMapper: () => getDocumentPositionMapper, getESModuleInterop: () => X23, getEditsForFileRename: () => getEditsForFileRename, getEffectiveBaseTypeNode: () => S32, getEffectiveConstraintOfTypeParameter: () => qC, getEffectiveContainerForJSDocTemplateTag: () => JP, getEffectiveImplementsTypeNodes: () => w32, getEffectiveInitializer: () => n3, getEffectiveJSDocHost: () => w23, getEffectiveModifierFlags: () => xm2, getEffectiveModifierFlagsAlwaysIncludeJSDoc: () => nS, getEffectiveModifierFlagsNoCache: () => aS, getEffectiveReturnTypeNode: () => zI, getEffectiveSetAccessorTypeAnnotationNode: () => VI, getEffectiveTypeAnnotationNode: () => R23, getEffectiveTypeParameterDeclarations: () => UC, getEffectiveTypeRoots: () => getEffectiveTypeRoots, getElementOrPropertyAccessArgumentExpressionOrName: () => mm, getElementOrPropertyAccessName: () => ao5, getElementsOfBindingOrAssignmentPattern: () => L82, getEmitDeclarations: () => Q23, getEmitFlags: () => ai7, getEmitHelpers: () => getEmitHelpers, getEmitModuleDetectionKind: () => OS, getEmitModuleKind: () => _i6, getEmitModuleResolutionKind: () => N_, getEmitScriptTarget: () => Ql4, getEmitStandardClassFields: () => PO, getEnclosingBlockScopeContainer: () => A02, getEnclosingContainer: () => tD, getEncodedSemanticClassifications: () => getEncodedSemanticClassifications, getEncodedSyntacticClassifications: () => getEncodedSyntacticClassifications, getEndLinePosition: () => CT, getEntityNameFromTypeNode: () => eP, getEntrypointsFromPackageJsonInfo: () => getEntrypointsFromPackageJsonInfo, getErrorCountForSummary: () => getErrorCountForSummary, getErrorSpanForNode: () => a2, getErrorSummaryText: () => getErrorSummaryText, getEscapedTextOfIdentifierOrLiteral: () => P32, getEscapedTextOfJsxAttributeName: () => LM2, getEscapedTextOfJsxNamespacedName: () => Yl3, getExpandoInitializer: () => E_, getExportAssignmentExpression: () => T32, getExportInfoMap: () => getExportInfoMap, getExportNeedsImportStarHelper: () => getExportNeedsImportStarHelper, getExpressionAssociativity: () => gI, getExpressionPrecedence: () => bI, getExternalHelpersModuleName: () => P82, getExternalModuleImportEqualsDeclarationExpression: () => aP, getExternalModuleName: () => T23, getExternalModuleNameFromDeclaration: () => PI, getExternalModuleNameFromPath: () => M23, getExternalModuleNameLiteral: () => aR, getExternalModuleRequireArgument: () => oP, getFallbackOptions: () => getFallbackOptions, getFileEmitOutput: () => getFileEmitOutput, getFileMatcherPatterns: () => RS, getFileNamesFromConfigSpecs: () => getFileNamesFromConfigSpecs, getFileWatcherEventKind: () => getFileWatcherEventKind, getFilesInErrorForSummary: () => getFilesInErrorForSummary, getFirstConstructorWithBody: () => V32, getFirstIdentifier: () => oN, getFirstNonSpaceCharacterPosition: () => getFirstNonSpaceCharacterPosition, getFirstProjectOutput: () => getFirstProjectOutput, getFixableErrorSpanExpression: () => getFixableErrorSpanExpression, getFormatCodeSettingsForWriting: () => getFormatCodeSettingsForWriting, getFullWidth: () => _m, getFunctionFlags: () => oI, getHeritageClause: () => ym2, getHostSignatureFromJSDoc: () => x23, getIdentifierAutoGenerate: () => getIdentifierAutoGenerate, getIdentifierGeneratedImportReference: () => getIdentifierGeneratedImportReference, getIdentifierTypeArguments: () => getIdentifierTypeArguments, getImmediatelyInvokedFunctionExpression: () => $D, getImpliedNodeFormatForFile: () => getImpliedNodeFormatForFile, getImpliedNodeFormatForFileWorker: () => getImpliedNodeFormatForFileWorker, getImportNeedsImportDefaultHelper: () => getImportNeedsImportDefaultHelper, getImportNeedsImportStarHelper: () => getImportNeedsImportStarHelper, getIndentSize: () => Fo4, getIndentString: () => N23, getInferredLibraryNameResolveFrom: () => getInferredLibraryNameResolveFrom, getInitializedVariables: () => LN, getInitializerOfBinaryExpression: () => s3, getInitializerOfBindingOrAssignmentElement: () => O8, getInterfaceBaseTypeNodes: () => C32, getInternalEmitFlags: () => Rk, getInvokedExpression: () => tP, getIsolatedModules: () => G23, getJSDocAugmentsTag: () => L42, getJSDocClassTag: () => kC, getJSDocCommentRanges: () => qT, getJSDocCommentsAndTags: () => f32, getJSDocDeprecatedTag: () => OC, getJSDocDeprecatedTagNoCache: () => q42, getJSDocEnumTag: () => MC, getJSDocHost: () => m3, getJSDocImplementsTags: () => J42, getJSDocOverrideTagNoCache: () => U42, getJSDocParameterTags: () => em2, getJSDocParameterTagsNoCache: () => I42, getJSDocPrivateTag: () => PC, getJSDocPrivateTagNoCache: () => j42, getJSDocProtectedTag: () => IC, getJSDocProtectedTagNoCache: () => F42, getJSDocPublicTag: () => DC, getJSDocPublicTagNoCache: () => R42, getJSDocReadonlyTag: () => NC, getJSDocReadonlyTagNoCache: () => B42, getJSDocReturnTag: () => z42, getJSDocReturnType: () => W42, getJSDocRoot: () => E23, getJSDocSatisfiesExpressionType: () => MM, getJSDocSatisfiesTag: () => Mg, getJSDocTags: () => zl3, getJSDocTagsNoCache: () => RC, getJSDocTemplateTag: () => JC, getJSDocThisTag: () => LC, getJSDocType: () => nm, getJSDocTypeAliasName: () => rg, getJSDocTypeAssertionType: () => ZJ, getJSDocTypeParameterDeclarations: () => X32, getJSDocTypeParameterTags: () => O42, getJSDocTypeParameterTagsNoCache: () => M42, getJSDocTypeTag: () => tm2, getJSXImplicitImportBase: () => LO, getJSXRuntimeImport: () => JO, getJSXTransformEnabled: () => MO, getKeyForCompilerOptions: () => getKeyForCompilerOptions, getLanguageVariant: () => q0, getLastChild: () => wS, getLeadingCommentRanges: () => Ho2, getLeadingCommentRangesOfNode: () => xD, getLeftmostAccessExpression: () => W23, getLeftmostExpression: () => nO, getLibraryNameFromLibFileName: () => getLibraryNameFromLibFileName, getLineAndCharacterOfPosition: () => no3, getLineInfo: () => getLineInfo, getLineOfLocalPosition: () => jI, getLineOfLocalPositionFromLineMap: () => Ta4, getLineStartPositionForPosition: () => getLineStartPositionForPosition, getLineStarts: () => Aa4, getLinesBetweenPositionAndNextNonWhitespaceCharacter: () => NN, getLinesBetweenPositionAndPrecedingNonWhitespaceCharacter: () => IN, getLinesBetweenPositions: () => T_, getLinesBetweenRangeEndAndRangeStart: () => kN, getLinesBetweenRangeEndPositions: () => DN, getLiteralText: () => jk, getLocalNameForExternalImport: () => iR, getLocalSymbolForExportDefault: () => pN, getLocaleSpecificMessage: () => I_, getLocaleTimeString: () => getLocaleTimeString, getMappedContextSpan: () => getMappedContextSpan, getMappedDocumentSpan: () => getMappedDocumentSpan, getMappedLocation: () => getMappedLocation, getMatchedFileSpec: () => getMatchedFileSpec, getMatchedIncludeSpec: () => getMatchedIncludeSpec, getMeaningFromDeclaration: () => getMeaningFromDeclaration, getMeaningFromLocation: () => getMeaningFromLocation, getMembersOfDeclaration: () => kD, getModeForFileReference: () => getModeForFileReference, getModeForResolutionAtIndex: () => getModeForResolutionAtIndex, getModeForUsageLocation: () => getModeForUsageLocation, getModifiedTime: () => getModifiedTime, getModifiers: () => gd, getModuleInstanceState: () => getModuleInstanceState, getModuleNameStringLiteralAt: () => getModuleNameStringLiteralAt, getModuleSpecifierEndingPreference: () => $O, getModuleSpecifierResolverHost: () => getModuleSpecifierResolverHost, getNameForExportedSymbol: () => getNameForExportedSymbol, getNameFromIndexInfo: () => rD, getNameFromPropertyName: () => getNameFromPropertyName, getNameOfAccessExpression: () => KN, getNameOfCompilerOptionValue: () => getNameOfCompilerOptionValue, getNameOfDeclaration: () => ql4, getNameOfExpando: () => vP, getNameOfJSDocTypedef: () => k42, getNameOrArgument: () => a3, getNameTable: () => TF, getNamesForExportedSymbol: () => getNamesForExportedSymbol, getNamespaceDeclarationNode: () => c32, getNewLineCharacter: () => hS, getNewLineKind: () => getNewLineKind, getNewLineOrDefaultFromHost: () => getNewLineOrDefaultFromHost, getNewTargetContainer: () => GD, getNextJSDocCommentLocation: () => d32, getNodeForGeneratedName: () => BR, getNodeId: () => getNodeId, getNodeKind: () => getNodeKind, getNodeModifiers: () => getNodeModifiers, getNodeModulePathParts: () => AM, getNonAssignedNameOfDeclaration: () => Zd, getNonAssignmentOperatorForCompoundAssignment: () => getNonAssignmentOperatorForCompoundAssignment, getNonAugmentationDeclaration: () => JT, getNonDecoratorTokenPosOfNode: () => Ok, getNormalizedAbsolutePath: () => Gi6, getNormalizedAbsolutePathWithoutRoot: () => XE, getNormalizedPathComponents: () => Hd, getObjectFlags: () => jf, getOperator: () => I23, getOperatorAssociativity: () => O32, getOperatorPrecedence: () => M32, getOptionFromName: () => getOptionFromName, getOptionsForLibraryResolution: () => getOptionsForLibraryResolution, getOptionsNameMap: () => getOptionsNameMap, getOrCreateEmitNode: () => getOrCreateEmitNode, getOrCreateExternalHelpersModuleNameIfNeeded: () => I8, getOrUpdate: () => h9, getOriginalNode: () => Bl3, getOriginalNodeId: () => getOriginalNodeId, getOriginalSourceFile: () => yI, getOutputDeclarationFileName: () => getOutputDeclarationFileName, getOutputExtension: () => getOutputExtension, getOutputFileNames: () => getOutputFileNames, getOutputPathsFor: () => getOutputPathsFor, getOutputPathsForBundle: () => getOutputPathsForBundle, getOwnEmitOutputFilePath: () => II, getOwnKeys: () => fg, getOwnValues: () => U92, getPackageJsonInfo: () => getPackageJsonInfo, getPackageJsonTypesVersionsPaths: () => getPackageJsonTypesVersionsPaths, getPackageJsonsVisibleToFile: () => getPackageJsonsVisibleToFile, getPackageNameFromTypesPackageName: () => getPackageNameFromTypesPackageName, getPackageScopeForPath: () => getPackageScopeForPath, getParameterSymbolFromJSDoc: () => LP, getParameterTypeNode: () => kM, getParentNodeInSpan: () => getParentNodeInSpan, getParseTreeNode: () => Ul3, getParsedCommandLineOfConfigFile: () => getParsedCommandLineOfConfigFile, getPathComponents: () => Oi5, getPathComponentsRelativeTo: () => wg, getPathFromPathComponents: () => Wo2, getPathUpdater: () => getPathUpdater, getPathsBasePath: () => MI, getPatternFromSpec: () => WO, getPendingEmitKind: () => getPendingEmitKind, getPositionOfLineAndCharacter: () => aC, getPossibleGenericSignatures: () => getPossibleGenericSignatures, getPossibleOriginalInputExtensionForExtension: () => OI, getPossibleTypeArgumentsInfo: () => getPossibleTypeArgumentsInfo, getPreEmitDiagnostics: () => getPreEmitDiagnostics, getPrecedingNonSpaceCharacterPosition: () => getPrecedingNonSpaceCharacterPosition, getPrivateIdentifier: () => getPrivateIdentifier, getProperties: () => getProperties, getProperty: () => xv, getPropertyArrayElementValue: () => jD, getPropertyAssignmentAliasLikeExpression: () => ZP, getPropertyNameForPropertyNameNode: () => vd, getPropertyNameForUniqueESSymbol: () => _I, getPropertyNameFromType: () => BM2, getPropertyNameOfBindingOrAssignmentElement: () => cR, getPropertySymbolFromBindingElement: () => getPropertySymbolFromBindingElement, getPropertySymbolsFromContextualType: () => l7, getQuoteFromPreference: () => getQuoteFromPreference, getQuotePreference: () => getQuotePreference, getRangesWhere: () => T9, getRefactorContextSpan: () => getRefactorContextSpan, getReferencedFileLocation: () => getReferencedFileLocation, getRegexFromPattern: () => Bf, getRegularExpressionForWildcard: () => Ff, getRegularExpressionsForWildcards: () => Z23, getRelativePathFromDirectory: () => Xv, getRelativePathFromFile: () => ZE, getRelativePathToDirectoryOrUrl: () => Eg, getRenameLocation: () => getRenameLocation, getReplacementSpanForContextToken: () => getReplacementSpanForContextToken, getResolutionDiagnostic: () => getResolutionDiagnostic, getResolutionModeOverride: () => getResolutionModeOverride, getResolveJsonModule: () => MS, getResolvePackageJsonExports: () => EO, getResolvePackageJsonImports: () => CO, getResolvedExternalModuleName: () => B32, getRestIndicatorOfBindingOrAssignmentElement: () => _R, getRestParameterElementType: () => AD, getRightMostAssignedExpression: () => y23, getRootDeclaration: () => gm2, getRootDirectoryOfResolutionCache: () => getRootDirectoryOfResolutionCache, getRootLength: () => Ni7, getRootPathSplitLength: () => getRootPathSplitLength, getScriptKind: () => getScriptKind, getScriptKindFromFileName: () => FS, getScriptTargetFeatures: () => ux, getSelectedEffectiveModifierFlags: () => eS, getSelectedSyntacticModifierFlags: () => tS, getSemanticClassifications: () => getSemanticClassifications, getSemanticJsxChildren: () => vI, getSetAccessorTypeAnnotationNode: () => FI, getSetAccessorValueParameter: () => L23, getSetExternalModuleIndicator: () => NS, getShebang: () => r4, getSingleInitializerOfVariableStatementOrPropertyDeclaration: () => S23, getSingleVariableOfVariableStatement: () => Al4, getSnapshotText: () => getSnapshotText, getSnippetElement: () => getSnippetElement, getSourceFileOfModule: () => Tk, getSourceFileOfNode: () => oi6, getSourceFilePathInNewDir: () => z32, getSourceFilePathInNewDirWorker: () => vm2, getSourceFileVersionAsHashFromText: () => getSourceFileVersionAsHashFromText, getSourceFilesToEmit: () => LI, getSourceMapRange: () => getSourceMapRange, getSourceMapper: () => getSourceMapper, getSourceTextOfNodeFromSourceFile: () => Qo3, getSpanOfTokenAtPosition: () => Ks6, getSpellingSuggestion: () => Iv, getStartPositionOfLine: () => wk, getStartPositionOfRange: () => p_, getStartsOnNewLine: () => getStartsOnNewLine, getStaticPropertiesAndClassStaticBlock: () => getStaticPropertiesAndClassStaticBlock, getStrictOptionValue: () => Y23, getStringComparer: () => dg, getSuperCallFromStatement: () => getSuperCallFromStatement, getSuperContainer: () => XD, getSupportedCodeFixes: () => o7, getSupportedExtensions: () => BS, getSupportedExtensionsWithJsonIfResolveJsonModule: () => US, getSwitchedType: () => getSwitchedType, getSymbolId: () => getSymbolId, getSymbolNameForPrivateIdentifier: () => cI, getSymbolTarget: () => getSymbolTarget, getSyntacticClassifications: () => getSyntacticClassifications, getSyntacticModifierFlags: () => U23, getSyntacticModifierFlagsNoCache: () => q23, getSynthesizedDeepClone: () => getSynthesizedDeepClone, getSynthesizedDeepCloneWithReplacements: () => getSynthesizedDeepCloneWithReplacements, getSynthesizedDeepClones: () => getSynthesizedDeepClones, getSynthesizedDeepClonesWithReplacements: () => getSynthesizedDeepClonesWithReplacements, getSyntheticLeadingComments: () => getSyntheticLeadingComments, getSyntheticTrailingComments: () => getSyntheticTrailingComments, getTargetLabel: () => getTargetLabel, getTargetOfBindingOrAssignmentElement: () => Ro3, getTemporaryModuleResolutionState: () => getTemporaryModuleResolutionState, getTextOfConstantValue: () => Bk, getTextOfIdentifierOrLiteral: () => Td, getTextOfJSDocComment: () => FC, getTextOfJsxAttributeName: () => JM2, getTextOfJsxNamespacedName: () => Kl4, getTextOfNode: () => cm, getTextOfNodeFromSourceText: () => n_, getTextOfPropertyName: () => aD, getThisContainer: () => f23, getThisParameter: () => H32, getTokenAtPosition: () => getTokenAtPosition, getTokenPosOfNode: () => $o3, getTokenSourceMapRange: () => getTokenSourceMapRange, getTouchingPropertyName: () => getTouchingPropertyName, getTouchingToken: () => getTouchingToken, getTrailingCommentRanges: () => n4, getTrailingSemicolonDeferringWriter: () => DI, getTransformFlagsSubtreeExclusions: () => Mx, getTransformers: () => getTransformers, getTsBuildInfoEmitOutputFilePath: () => getTsBuildInfoEmitOutputFilePath, getTsConfigObjectLiteralExpression: () => VT, getTsConfigPropArrayElementValue: () => FD, getTypeAnnotationNode: () => qI, getTypeArgumentOrTypeParameterList: () => getTypeArgumentOrTypeParameterList, getTypeKeywordOfTypeOnlyImport: () => getTypeKeywordOfTypeOnlyImport, getTypeNode: () => getTypeNode, getTypeNodeIfAccessible: () => getTypeNodeIfAccessible, getTypeParameterFromJsDoc: () => RP, getTypeParameterOwner: () => SC, getTypesPackageName: () => getTypesPackageName, getUILocale: () => lE, getUniqueName: () => getUniqueName, getUniqueSymbolId: () => getUniqueSymbolId, getUseDefineForClassFields: () => DO, getWatchErrorSummaryDiagnosticMessage: () => getWatchErrorSummaryDiagnosticMessage, getWatchFactory: () => getWatchFactory, group: () => H9, groupBy: () => G92, guessIndentation: () => ek, handleNoEmitOptions: () => handleNoEmitOptions, hasAbstractModifier: () => K32, hasAccessorModifier: () => F23, hasAmbientModifier: () => Z32, hasChangesInResolutions: () => bk, hasChildOfKind: () => hasChildOfKind, hasContextSensitiveParameters: () => SM, hasDecorators: () => kl4, hasDocComment: () => hasDocComment, hasDynamicName: () => D32, hasEffectiveModifier: () => j23, hasEffectiveModifiers: () => QI, hasEffectiveReadonlyModifier: () => j02, hasExtension: () => Wv, hasIndexSignature: () => hasIndexSignature, hasInitializer: () => ST, hasInvalidEscape: () => L32, hasJSDocNodes: () => Hi7, hasJSDocParameterTags: () => AC2, hasJSFileExtension: () => eb, hasJsonModuleEmitEnabled: () => gO, hasOnlyExpressionInitializer: () => KA, hasOverrideModifier: () => KI, hasPossibleExternalModuleReference: () => eD, hasProperty: () => Wn6, hasPropertyAccessExpressionWithName: () => hasPropertyAccessExpressionWithName, hasQuestionToken: () => PP, hasRecordedExternalHelpers: () => nR, hasResolutionModeOverride: () => UM2, hasRestParameter: () => tk, hasScopeMarker: () => kA, hasStaticModifier: () => Sm, hasSyntacticModifier: () => Cn4, hasSyntacticModifiers: () => YI, hasTSFileExtension: () => tb, hasTabstop: () => ix, hasTrailingDirectorySeparator: () => Vd, hasType: () => YA, hasTypeArguments: () => jP, hasZeroOrOneAsteriskCharacter: () => RO, helperString: () => helperString, hostGetCanonicalFileName: () => F32, hostUsesCaseSensitiveFileNames: () => O23, idText: () => Lt9, identifierIsThisKeyword: () => G32, identifierToKeywordKind: () => E42, identity: () => bt9, identitySourceMapConsumer: () => identitySourceMapConsumer, ignoreSourceNewlines: () => ignoreSourceNewlines, ignoredPaths: () => ignoredPaths, importDefaultHelper: () => importDefaultHelper, importFromModuleSpecifier: () => kP, importNameElisionDisabled: () => bO, importStarHelper: () => importStarHelper, indexOfAnyCharCode: () => dv, indexOfNode: () => Jk, indicesOf: () => ug, inferredTypesContainingFile: () => inferredTypesContainingFile, injectClassNamedEvaluationHelperBlockIfMissing: () => injectClassNamedEvaluationHelperBlockIfMissing, injectClassThisAssignmentIfMissing: () => injectClassThisAssignmentIfMissing, insertImports: () => insertImports, insertLeadingStatement: () => zJ, insertSorted: () => vl4, insertStatementAfterCustomPrologue: () => Pk, insertStatementAfterStandardPrologue: () => Dk, insertStatementsAfterCustomPrologue: () => kk, insertStatementsAfterStandardPrologue: () => Ak, intersperse: () => i9, intrinsicTagNameToString: () => jM2, introducesArgumentsExoticObject: () => ND, inverseJsxOptionMap: () => inverseJsxOptionMap, isAbstractConstructorSymbol: () => HN, isAbstractModifier: () => vL, isAccessExpression: () => Ko2, isAccessibilityModifier: () => isAccessibilityModifier, isAccessor: () => am, isAccessorModifier: () => SL, isAliasSymbolDeclaration: () => KP, isAliasableExpression: () => A23, isAmbientModule: () => lm, isAmbientPropertyDeclaration: () => Qk, isAnonymousFunctionDefinition: () => Zs5, isAnyDirectorySeparator: () => vg, isAnyImportOrBareOrAccessedRequire: () => Kk, isAnyImportOrReExport: () => pm, isAnyImportSyntax: () => t23, isAnySupportedFileExtension: () => nM, isApplicableVersionedTypesKey: () => isApplicableVersionedTypesKey, isArgumentExpressionOfElementAccess: () => isArgumentExpressionOfElementAccess, isArray: () => $t9, isArrayBindingElement: () => mA, isArrayBindingOrAssignmentElement: () => lT, isArrayBindingOrAssignmentPattern: () => cT, isArrayBindingPattern: () => AL, isArrayLiteralExpression: () => iu5, isArrayLiteralOrObjectLiteralDestructuringPattern: () => isArrayLiteralOrObjectLiteralDestructuringPattern, isArrayTypeNode: () => Hx, isArrowFunction: () => Nm, isAsExpression: () => LL, isAssertClause: () => rJ, isAssertEntry: () => iJ, isAssertionExpression: () => CA, isAssertsKeyword: () => yL, isAssignmentDeclaration: () => O02, isAssignmentExpression: () => si6, isAssignmentOperator: () => A_, isAssignmentPattern: () => oT, isAssignmentTarget: () => BP, isAsteriskToken: () => pL, isAsyncFunction: () => sI, isAsyncModifier: () => _l4, isAutoAccessorPropertyDeclaration: () => aT, isAwaitExpression: () => IL, isAwaitKeyword: () => gL, isBigIntLiteral: () => db, isBinaryExpression: () => At9, isBinaryOperatorToken: () => LR, isBindableObjectDefinePropertyCall: () => b23, isBindableStaticAccessExpression: () => _s7, isBindableStaticElementAccessExpression: () => v23, isBindableStaticNameExpression: () => Yo3, isBindingElement: () => ru5, isBindingElementOfBareOrAccessedRequire: () => pP, isBindingName: () => _A, isBindingOrAssignmentElement: () => hA, isBindingOrAssignmentPattern: () => yA, isBindingPattern: () => om, isBlock: () => au4, isBlockOrCatchScoped: () => qk, isBlockScope: () => RT, isBlockScopedContainerTopLevel: () => Gk, isBooleanLiteral: () => cA, isBreakOrContinueStatement: () => GC, isBreakStatement: () => GL, isBuildInfoFile: () => isBuildInfoFile, isBuilderProgram: () => isBuilderProgram2, isBundle: () => gJ, isBundleFileTextLike: () => ZN, isCallChain: () => T0, isCallExpression: () => R_, isCallExpressionTarget: () => isCallExpressionTarget, isCallLikeExpression: () => uT, isCallLikeOrFunctionLikeExpression: () => vA, isCallOrNewExpression: () => TA, isCallOrNewExpressionTarget: () => isCallOrNewExpressionTarget, isCallSignatureDeclaration: () => yb, isCallToHelper: () => isCallToHelper, isCaseBlock: () => eJ, isCaseClause: () => mJ, isCaseKeyword: () => xL, isCaseOrDefaultClause: () => QA, isCatchClause: () => hJ, isCatchClauseVariableDeclaration: () => KS, isCatchClauseVariableDeclarationOrBindingElement: () => OT, isCheckJsEnabledForFile: () => rM, isChildOfNodeWithKind: () => wD, isCircularBuildOrder: () => isCircularBuildOrder, isClassDeclaration: () => es7, isClassElement: () => io5, isClassExpression: () => Ol4, isClassInstanceProperty: () => uA, isClassLike: () => ar8, isClassMemberModifier: () => nT, isClassNamedEvaluationHelperBlock: () => isClassNamedEvaluationHelperBlock, isClassOrTypeElement: () => fA, isClassStaticBlockDeclaration: () => eu4, isClassThisAssignmentBlock: () => isClassThisAssignmentBlock, isCollapsedRange: () => SN, isColonToken: () => fL, isCommaExpression: () => Bm3, isCommaListExpression: () => j_, isCommaSequence: () => KJ, isCommaToken: () => jx, isComment: () => isComment, isCommonJsExportPropertyAssignment: () => u22, isCommonJsExportedExpression: () => PD, isCompoundAssignment: () => isCompoundAssignment, isComputedNonLiteralName: () => iD, isComputedPropertyName: () => oo4, isConciseBody: () => NA, isConditionalExpression: () => NL, isConditionalTypeNode: () => Kx, isConstTypeReference: () => X42, isConstructSignatureDeclaration: () => zx, isConstructorDeclaration: () => L_, isConstructorTypeNode: () => bb, isContextualKeyword: () => k23, isContinueStatement: () => HL, isCustomPrologue: () => fm, isDebuggerStatement: () => ZL, isDeclaration: () => Xo3, isDeclarationBindingElement: () => Hg, isDeclarationFileName: () => W82, isDeclarationName: () => g3, isDeclarationNameOfEnumOrNamespace: () => MN, isDeclarationReadonly: () => yD, isDeclarationStatement: () => zA, isDeclarationWithTypeParameterChildren: () => jT, isDeclarationWithTypeParameters: () => Yk, isDecorator: () => M_, isDecoratorTarget: () => isDecoratorTarget, isDefaultClause: () => f8, isDefaultImport: () => l3, isDefaultModifier: () => hL, isDefaultedExpandoInitializer: () => bP, isDeleteExpression: () => DL, isDeleteTarget: () => XP, isDeprecatedDeclaration: () => isDeprecatedDeclaration, isDestructuringAssignment: () => aN, isDiagnosticWithLocation: () => isDiagnosticWithLocation, isDiskPathRoot: () => qE, isDoStatement: () => qL, isDocumentRegistryEntry: () => isDocumentRegistryEntry, isDotDotDotToken: () => uL, isDottedName: () => B0, isDynamicName: () => P23, isESSymbolIdentifier: () => pI, isEffectiveExternalModule: () => e22, isEffectiveModuleDeclaration: () => MT, isEffectiveStrictModeSourceFile: () => $k, isElementAccessChain: () => G42, isElementAccessExpression: () => Ki6, isEmittedFileOfProgram: () => isEmittedFileOfProgram, isEmptyArrayLiteral: () => uN, isEmptyBindingElement: () => x42, isEmptyBindingPattern: () => S42, isEmptyObjectLiteral: () => lN, isEmptyStatement: () => BL, isEmptyStringLiteral: () => XT, isEntityName: () => sA, isEntityNameExpression: () => co4, isEnumConst: () => hD, isEnumDeclaration: () => Pb, isEnumMember: () => m8, isEqualityOperatorKind: () => isEqualityOperatorKind, isEqualsGreaterThanToken: () => mL, isExclamationToken: () => Id, isExcludedFile: () => isExcludedFile, isExclusivelyTypeOnlyImportOrExport: () => isExclusivelyTypeOnlyImportOrExport, isExpandoPropertyDeclaration: () => sx, isExportAssignment: () => ps7, isExportDeclaration: () => F_, isExportModifier: () => Fx, isExportName: () => YJ, isExportNamespaceAsDefaultDeclaration: () => NT, isExportOrDefaultModifier: () => RR, isExportSpecifier: () => p8, isExportsIdentifier: () => r32, isExportsOrModuleExportsOrAlias: () => isExportsOrModuleExportsOrAlias, isExpression: () => sm, isExpressionNode: () => m2, isExpressionOfExternalModuleImportEqualsDeclaration: () => isExpressionOfExternalModuleImportEqualsDeclaration, isExpressionOfOptionalChainRoot: () => WC, isExpressionStatement: () => ou4, isExpressionWithTypeArguments: () => Cb, isExpressionWithTypeArgumentsInClassExtendsClause: () => F0, isExternalModule: () => ns6, isExternalModuleAugmentation: () => Zg, isExternalModuleImportEqualsDeclaration: () => YT, isExternalModuleIndicator: () => PA, isExternalModuleNameRelative: () => pC, isExternalModuleReference: () => Jm, isExternalModuleSymbol: () => isExternalModuleSymbol, isExternalOrCommonJsModule: () => mD, isFileLevelReservedGeneratedIdentifier: () => aA, isFileLevelUniqueName: () => AT, isFileProbablyExternalModule: () => gl4, isFirstDeclarationOfSymbolParameter: () => isFirstDeclarationOfSymbolParameter, isFixablePromiseHandler: () => isFixablePromiseHandler, isForInOrOfStatement: () => IA, isForInStatement: () => WL, isForInitializer: () => MA, isForOfStatement: () => VL, isForStatement: () => s8, isFunctionBlock: () => WT, isFunctionBody: () => OA, isFunctionDeclaration: () => us7, isFunctionExpression: () => Im, isFunctionExpressionOrArrowFunction: () => ZS, isFunctionLike: () => $i7, isFunctionLikeDeclaration: () => rT, isFunctionLikeKind: () => qg, isFunctionLikeOrClassStaticBlockDeclaration: () => im, isFunctionOrConstructorTypeNode: () => dA, isFunctionOrModuleBlock: () => lA, isFunctionSymbol: () => CP, isFunctionTypeNode: () => tu4, isFutureReservedKeyword: () => tI, isGeneratedIdentifier: () => va3, isGeneratedPrivateIdentifier: () => Bg, isGetAccessor: () => rl5, isGetAccessorDeclaration: () => d_, isGetOrSetAccessorDeclaration: () => zC, isGlobalDeclaration: () => isGlobalDeclaration, isGlobalScopeAugmentation: () => um, isGrammarError: () => Ck, isHeritageClause: () => Ml3, isHoistedFunction: () => D02, isHoistedVariableStatement: () => P02, isIdentifier: () => Ae10, isIdentifierANonContextualKeyword: () => iI, isIdentifierName: () => YP, isIdentifierOrThisTypeNode: () => dR, isIdentifierPart: () => Ka3, isIdentifierStart: () => yr6, isIdentifierText: () => Ig, isIdentifierTypePredicate: () => JD, isIdentifierTypeReference: () => mM, isIfStatement: () => UL, isIgnoredFileFromWildCardWatching: () => isIgnoredFileFromWildCardWatching, isImplicitGlob: () => LS, isImportAttribute: () => oJ, isImportAttributeName: () => iA, isImportAttributes: () => aJ, isImportCall: () => s22, isImportClause: () => tJ, isImportDeclaration: () => Ob, isImportEqualsDeclaration: () => Nb, isImportKeyword: () => Ux, isImportMeta: () => k02, isImportOrExportSpecifier: () => tA, isImportOrExportSpecifierName: () => isImportOrExportSpecifierName, isImportSpecifier: () => l8, isImportTypeAssertionContainer: () => nJ, isImportTypeNode: () => nu5, isImportableFile: () => isImportableFile, isInComment: () => isInComment, isInCompoundLikeAssignment: () => qP, isInExpressionContext: () => $T, isInJSDoc: () => KT, isInJSFile: () => Vt5, isInJSXText: () => isInJSXText, isInJsonFile: () => cP, isInNonReferenceComment: () => isInNonReferenceComment, isInReferenceComment: () => isInReferenceComment, isInRightSideOfInternalImportEqualsDeclaration: () => isInRightSideOfInternalImportEqualsDeclaration, isInString: () => isInString, isInTemplateString: () => isInTemplateString, isInTopLevelContext: () => HD, isInTypeQuery: () => BI, isIncrementalCompilation: () => kO, isIndexSignatureDeclaration: () => gb, isIndexedAccessTypeNode: () => t82, isInferTypeNode: () => Zx, isInfinityOrNaNString: () => xM, isInitializedProperty: () => isInitializedProperty, isInitializedVariable: () => bS, isInsideJsxElement: () => isInsideJsxElement, isInsideJsxElementOrAttribute: () => isInsideJsxElementOrAttribute, isInsideNodeModules: () => isInsideNodeModules, isInsideTemplateLiteral: () => isInsideTemplateLiteral, isInstanceOfExpression: () => pS, isInstantiatedModule: () => isInstantiatedModule, isInterfaceDeclaration: () => su4, isInternalDeclaration: () => isInternalDeclaration, isInternalModuleImportEqualsDeclaration: () => sP, isInternalName: () => QJ, isIntersectionTypeNode: () => Yx, isIntrinsicJsxName: () => j32, isIterationStatement: () => mT, isJSDoc: () => ds7, isJSDocAllType: () => xJ, isJSDocAugmentsTag: () => jm, isJSDocAuthorTag: () => DJ, isJSDocCallbackTag: () => PJ, isJSDocClassTag: () => g8, isJSDocCommentContainingNode: () => TT, isJSDocConstructSignature: () => IP, isJSDocDeprecatedTag: () => Wb, isJSDocEnumTag: () => v82, isJSDocFunctionType: () => Rm, isJSDocImplementsTag: () => S8, isJSDocIndexSignature: () => uP, isJSDocLikeText: () => B82, isJSDocLink: () => vJ, isJSDocLinkCode: () => TJ, isJSDocLinkLike: () => dl4, isJSDocLinkPlain: () => SJ, isJSDocMemberName: () => r_, isJSDocNameReference: () => Wf, isJSDocNamepathType: () => kJ, isJSDocNamespaceBody: () => RA, isJSDocNode: () => $g, isJSDocNonNullableType: () => EJ, isJSDocNullableType: () => y8, isJSDocOptionalParameter: () => ax, isJSDocOptionalType: () => CJ, isJSDocOverloadTag: () => zb, isJSDocOverrideTag: () => b8, isJSDocParameterTag: () => m_, isJSDocPrivateTag: () => Bb, isJSDocPropertyLikeTag: () => Rg, isJSDocPropertyTag: () => MJ, isJSDocProtectedTag: () => Ub, isJSDocPublicTag: () => Fb, isJSDocReadonlyTag: () => qb, isJSDocReturnTag: () => Vb, isJSDocSatisfiesExpression: () => OM, isJSDocSatisfiesTag: () => Hb, isJSDocSeeTag: () => IJ, isJSDocSignature: () => cu4, isJSDocTag: () => Qg, isJSDocTemplateTag: () => ts8, isJSDocThisTag: () => T8, isJSDocThrowsTag: () => LJ, isJSDocTypeAlias: () => Xl4, isJSDocTypeAssertion: () => D8, isJSDocTypeExpression: () => h8, isJSDocTypeLiteral: () => jb, isJSDocTypeTag: () => lu5, isJSDocTypedefTag: () => NJ, isJSDocUnknownTag: () => OJ, isJSDocUnknownType: () => wJ, isJSDocVariadicType: () => AJ, isJSXTagName: () => Lf, isJsonEqual: () => rb, isJsonSourceFile: () => o2, isJsxAttribute: () => pJ, isJsxAttributeLike: () => XA, isJsxAttributeName: () => RM, isJsxAttributes: () => Rb, isJsxChild: () => bT, isJsxClosingElement: () => zf, isJsxClosingFragment: () => uJ, isJsxElement: () => tg, isJsxExpression: () => dJ, isJsxFragment: () => yl4, isJsxNamespacedName: () => B_, isJsxOpeningElement: () => Jo2, isJsxOpeningFragment: () => Jb, isJsxOpeningLikeElement: () => vT, isJsxOpeningLikeElementTagName: () => isJsxOpeningLikeElementTagName, isJsxSelfClosingElement: () => lJ, isJsxSpreadAttribute: () => fJ, isJsxTagNameExpression: () => GA, isJsxText: () => Pd, isJumpStatementTarget: () => isJumpStatementTarget, isKeyword: () => ki6, isKeywordOrPunctuation: () => Rf, isKnownSymbol: () => lI, isLabelName: () => isLabelName, isLabelOfLabeledStatement: () => isLabelOfLabeledStatement, isLabeledStatement: () => _8, isLateVisibilityPaintedStatement: () => Zk, isLeftHandSideExpression: () => jo2, isLeftHandSideOfAssignment: () => iN, isLet: () => vD, isLineBreak: () => On7, isLiteralComputedPropertyDeclarationName: () => b32, isLiteralExpression: () => Fg, isLiteralExpressionOfObject: () => KC, isLiteralImportTypeNode: () => _23, isLiteralKind: () => jg, isLiteralLikeAccess: () => Jf, isLiteralLikeElementAccess: () => Gl4, isLiteralNameOfPropertyDeclarationOrIndexAccess: () => isLiteralNameOfPropertyDeclarationOrIndexAccess, isLiteralTypeLikeExpression: () => gR, isLiteralTypeLiteral: () => wA, isLiteralTypeNode: () => xb, isLocalName: () => ng, isLogicalOperator: () => tN, isLogicalOrCoalescingAssignmentExpression: () => nN, isLogicalOrCoalescingAssignmentOperator: () => wm2, isLogicalOrCoalescingBinaryExpression: () => rN, isLogicalOrCoalescingBinaryOperator: () => sS, isMappedTypeNode: () => n8, isMemberName: () => ro3, isMetaProperty: () => Ab, isMethodDeclaration: () => f_, isMethodOrAccessor: () => zg, isMethodSignature: () => qx, isMinusToken: () => hb, isMissingDeclaration: () => _J, isModifier: () => Ug, isModifierKind: () => Ei6, isModifierLike: () => Mf, isModuleAugmentationExternal: () => LT2, isModuleBlock: () => c8, isModuleBody: () => LA, isModuleDeclaration: () => Zi6, isModuleExportsAccessExpression: () => g22, isModuleIdentifier: () => i32, isModuleName: () => yR, isModuleOrEnumDeclaration: () => FA, isModuleReference: () => HA, isModuleSpecifierLike: () => isModuleSpecifierLike, isModuleWithStringLiteralName: () => zk, isNameOfFunctionDeclaration: () => isNameOfFunctionDeclaration, isNameOfModuleDeclaration: () => isNameOfModuleDeclaration, isNamedClassElement: () => pA, isNamedDeclaration: () => Kd, isNamedEvaluation: () => fI, isNamedEvaluationSource: () => N32, isNamedExportBindings: () => XC, isNamedExports: () => u8, isNamedImportBindings: () => jA, isNamedImports: () => sJ, isNamedImportsOrExports: () => eO, isNamedTupleMember: () => vb, isNamespaceBody: () => JA, isNamespaceExport: () => Lm, isNamespaceExportDeclaration: () => Ib, isNamespaceImport: () => Mb, isNamespaceReexportDeclaration: () => iP, isNewExpression: () => r8, isNewExpressionTarget: () => isNewExpressionTarget, isNoSubstitutionTemplateLiteral: () => Rx, isNode: () => QC, isNodeArray: () => ha4, isNodeArrayMultiLine: () => PN, isNodeDescendantOf: () => $P, isNodeKind: () => Wl3, isNodeLikeSystem: () => PE, isNodeModulesDirectory: () => eC, isNodeWithPossibleHoistedDeclaration: () => zP, isNonContextualKeyword: () => k32, isNonExportDefaultModifier: () => jR, isNonGlobalAmbientModule: () => Wk, isNonGlobalDeclaration: () => isNonGlobalDeclaration, isNonNullAccess: () => NM, isNonNullChain: () => $42, isNonNullExpression: () => Uo2, isNonStaticMethodOrAccessorWithPrivateName: () => isNonStaticMethodOrAccessorWithPrivateName, isNotEmittedOrPartiallyEmittedNode: () => AA, isNotEmittedStatement: () => Lb, isNullishCoalesce: () => HC, isNumber: () => tE, isNumericLiteral: () => lo5, isNumericLiteralName: () => ex, isObjectBindingElementWithoutPropertyName: () => isObjectBindingElementWithoutPropertyName, isObjectBindingOrAssignmentElement: () => _T, isObjectBindingOrAssignmentPattern: () => sT, isObjectBindingPattern: () => CL, isObjectLiteralElement: () => x0, isObjectLiteralElementLike: () => Vg, isObjectLiteralExpression: () => uo4, isObjectLiteralMethod: () => MD, isObjectLiteralOrClassExpressionMethodOrAccessor: () => LD, isObjectTypeDeclaration: () => YN, isOctalDigit: () => Nf, isOmittedExpression: () => Mm, isOptionalChain: () => Lg, isOptionalChainRoot: () => Jg, isOptionalDeclaration: () => IM, isOptionalJSDocPropertyLikeTag: () => rx, isOptionalTypeNode: () => Xx, isOuterExpression: () => Um2, isOutermostOptionalChain: () => VC, isOverrideModifier: () => TL, isPackedArrayLiteral: () => bM, isParameter: () => Pa4, isParameterDeclaration: () => mI, isParameterOrCatchClauseVariable: () => wM, isParameterPropertyDeclaration: () => T4, isParameterPropertyModifier: () => tT, isParenthesizedExpression: () => cs7, isParenthesizedTypeNode: () => Tb, isParseTreeNode: () => xl4, isPartOfTypeNode: () => c23, isPartOfTypeQuery: () => QT, isPartiallyEmittedExpression: () => o8, isPatternMatch: () => hg, isPinnedComment: () => IT, isPlainJsFile: () => Sk, isPlusToken: () => mb, isPossiblyTypeArgumentPosition: () => isPossiblyTypeArgumentPosition, isPostfixUnaryExpression: () => a8, isPrefixUnaryExpression: () => Om, isPrivateIdentifier: () => Vn6, isPrivateIdentifierClassElementDeclaration: () => eT, isPrivateIdentifierPropertyAccessExpression: () => oA, isPrivateIdentifierSymbol: () => uI, isProgramBundleEmitBuildInfo: () => isProgramBundleEmitBuildInfo, isProgramUptoDate: () => isProgramUptoDate, isPrologueDirective: () => Sa3, isPropertyAccessChain: () => H42, isPropertyAccessEntityNameExpression: () => lS, isPropertyAccessExpression: () => Ln6, isPropertyAccessOrQualifiedName: () => bA, isPropertyAccessOrQualifiedNameOrImportTypeNode: () => gA, isPropertyAssignment: () => fs7, isPropertyDeclaration: () => Ia3, isPropertyName: () => Vl4, isPropertyNameLiteral: () => L0, isPropertySignature: () => Zl4, isProtoSetter: () => I32, isPrototypeAccess: () => k_, isPrototypePropertyAssignment: () => xP, isPunctuation: () => A32, isPushOrUnshiftIdentifier: () => dI, isQualifiedName: () => O_, isQuestionDotToken: () => dL, isQuestionOrExclamationToken: () => fR, isQuestionOrPlusOrMinusToken: () => hR, isQuestionToken: () => Nl4, isRawSourceMap: () => isRawSourceMap, isReadonlyKeyword: () => Bx, isReadonlyKeywordOrPlusOrMinusToken: () => mR, isRecognizedTripleSlashComment: () => Ik, isReferenceFileLocation: () => isReferenceFileLocation, isReferencedFile: () => isReferencedFile, isRegularExpressionLiteral: () => sL, isRequireCall: () => Hl4, isRequireVariableStatement: () => t32, isRestParameter: () => xT, isRestTypeNode: () => $x, isReturnStatement: () => XL, isReturnStatementWithFixablePromiseHandler: () => isReturnStatementWithFixablePromiseHandler, isRightSideOfAccessExpression: () => uS, isRightSideOfInstanceofExpression: () => cN, isRightSideOfPropertyAccess: () => isRightSideOfPropertyAccess, isRightSideOfQualifiedName: () => isRightSideOfQualifiedName, isRightSideOfQualifiedNameOrPropertyAccess: () => sN, isRightSideOfQualifiedNameOrPropertyAccessOrJSDocMemberName: () => _N, isRootedDiskPath: () => b_, isSameEntityName: () => u_, isSatisfiesExpression: () => JL, isScopeMarker: () => hT, isSemicolonClassElement: () => FL, isSetAccessor: () => nl5, isSetAccessorDeclaration: () => Zo4, isShebangTrivia: () => Dg, isShiftOperatorOrHigher: () => $b, isShorthandAmbientModuleSymbol: () => Vk, isShorthandPropertyAssignment: () => _u4, isSignedNumericLiteral: () => D23, isSimpleCopiableExpression: () => isSimpleCopiableExpression, isSimpleInlineableExpression: () => isSimpleInlineableExpression, isSingleOrDoubleQuote: () => fP, isSourceFile: () => ci5, isSourceFileFromLibrary: () => isSourceFileFromLibrary, isSourceFileJS: () => h22, isSourceFileNotJS: () => _P, isSourceFileNotJson: () => lP, isSourceMapping: () => isSourceMapping, isSpecialPropertyDeclaration: () => wP, isSpreadAssignment: () => d8, isSpreadElement: () => Eb, isStatement: () => yT, isStatementButNotDeclaration: () => WA, isStatementOrBlock: () => gT, isStatementWithLocals: () => xk, isStatic: () => R02, isStaticModifier: () => bL, isString: () => g_, isStringAKeyword: () => rI, isStringANonContextualKeyword: () => nI, isStringAndEmptyAnonymousObjectIntersection: () => isStringAndEmptyAnonymousObjectIntersection, isStringDoubleQuoted: () => dP, isStringLiteral: () => Tr7, isStringLiteralLike: () => ni6, isStringLiteralOrJsxExpression: () => $A, isStringLiteralOrTemplate: () => isStringLiteralOrTemplate, isStringOrNumericLiteralLike: () => Yi7, isStringOrRegularExpressionOrTemplateLiteral: () => isStringOrRegularExpressionOrTemplateLiteral, isStringTextContainingNode: () => rA, isSuperCall: () => TD, isSuperKeyword: () => qf, isSuperOrSuperProperty: () => QD, isSuperProperty: () => bd, isSupportedSourceFileName: () => YO, isSwitchStatement: () => QL, isSyntaxList: () => JJ, isSyntheticExpression: () => RL, isSyntheticReference: () => cJ, isTagName: () => isTagName, isTaggedTemplateExpression: () => i8, isTaggedTemplateTag: () => isTaggedTemplateTag, isTemplateExpression: () => OL, isTemplateHead: () => _L, isTemplateLiteral: () => SA, isTemplateLiteralKind: () => wl4, isTemplateLiteralToken: () => ZC, isTemplateLiteralTypeNode: () => EL, isTemplateLiteralTypeSpan: () => wL, isTemplateMiddle: () => cL, isTemplateMiddleOrTemplateTail: () => eA, isTemplateSpan: () => jL, isTemplateTail: () => lL, isTextWhiteSpaceLike: () => isTextWhiteSpaceLike, isThis: () => isThis, isThisContainerOrFunctionBlock: () => VD, isThisIdentifier: () => Tm3, isThisInTypeQuery: () => UI, isThisInitializedDeclaration: () => KD, isThisInitializedObjectBindingExpression: () => ZD, isThisProperty: () => YD, isThisTypeNode: () => Sb, isThisTypeParameter: () => tx, isThisTypePredicate: () => RD, isThrowStatement: () => YL, isToken: () => YC, isTokenKind: () => Y43, isTraceEnabled: () => isTraceEnabled, isTransientSymbol: () => E02, isTrivia: () => aI, isTryStatement: () => KL, isTupleTypeNode: () => Gx, isTypeAlias: () => NP, isTypeAliasDeclaration: () => Db, isTypeAssertionExpression: () => kL, isTypeDeclaration: () => nx, isTypeElement: () => Wg, isTypeKeyword: () => isTypeKeyword, isTypeKeywordToken: () => isTypeKeywordToken, isTypeKeywordTokenOrIdentifier: () => isTypeKeywordTokenOrIdentifier, isTypeLiteralNode: () => Pm, isTypeNode: () => S0, isTypeNodeKind: () => ES, isTypeOfExpression: () => PL, isTypeOnlyExportDeclaration: () => Z42, isTypeOnlyImportDeclaration: () => K42, isTypeOnlyImportOrExportDeclaration: () => nA, isTypeOperatorNode: () => e8, isTypeParameterDeclaration: () => Lo3, isTypePredicateNode: () => Wx, isTypeQueryNode: () => Vx, isTypeReferenceNode: () => J_, isTypeReferenceType: () => ZA, isTypeUsableAsPropertyName: () => FM, isUMDExportSymbol: () => XN, isUnaryExpression: () => fT, isUnaryExpressionWithWrite: () => xA, isUnicodeIdentifierStart: () => Kv, isUnionTypeNode: () => Qx, isUnparsedNode: () => $C, isUnparsedPrepend: () => yJ, isUnparsedSource: () => bJ, isUnparsedTextLike: () => Q42, isUrl: () => UE, isValidBigIntString: () => XS, isValidESSymbolDeclaration: () => ID, isValidTypeOnlyAliasUseSite: () => uM, isValueSignatureDeclaration: () => WP, isVarAwaitUsing: () => gD, isVarConst: () => UT, isVarUsing: () => bD, isVariableDeclaration: () => Li6, isVariableDeclarationInVariableStatement: () => zT, isVariableDeclarationInitializedToBareOrAccessedRequire: () => dm2, isVariableDeclarationInitializedToRequire: () => ZT, isVariableDeclarationList: () => kb, isVariableLike: () => l22, isVariableLikeOrAccessor: () => DD, isVariableStatement: () => ls7, isVoidExpression: () => wb, isWatchSet: () => JN, isWhileStatement: () => zL, isWhiteSpaceLike: () => ka4, isWhiteSpaceSingleLine: () => Mo3, isWithStatement: () => $L, isWriteAccess: () => qN, isWriteOnlyAccess: () => UN, isYieldExpression: () => ML, jsxModeNeedsExplicitImport: () => jsxModeNeedsExplicitImport, keywordPart: () => keywordPart, last: () => Ea4, lastOrUndefined: () => Pi7, length: () => eo3, libMap: () => libMap, libs: () => libs, lineBreakPart: () => lineBreakPart, linkNamePart: () => linkNamePart, linkPart: () => linkPart, linkTextPart: () => linkTextPart, listFiles: () => listFiles, loadModuleFromGlobalCache: () => loadModuleFromGlobalCache, loadWithModeAwareCache: () => loadWithModeAwareCache, makeIdentifierFromModuleName: () => Uk, makeImport: () => makeImport, makeImportIfNecessary: () => makeImportIfNecessary, makeStringLiteral: () => makeStringLiteral, mangleScopedPackageName: () => mangleScopedPackageName, map: () => xa3, mapAllOrFail: () => f9, mapDefined: () => wa2, mapDefinedEntries: () => m9, mapDefinedIterator: () => d9, mapEntries: () => v9, mapIterator: () => l9, mapOneOrMany: () => mapOneOrMany, mapToDisplayParts: () => mapToDisplayParts, matchFiles: () => VO, matchPatternOrExact: () => iM, matchedText: () => TE, matchesExclude: () => matchesExclude, maybeBind: () => sn6, maybeSetLocalizedDiagnosticMessages: () => kS, memoize: () => Qf, memoizeCached: () => aE, memoizeOne: () => Fr5, memoizeWeak: () => iE, metadataHelper: () => metadataHelper, min: () => _E, minAndMax: () => oM, missingFileModifiedTime: () => missingFileModifiedTime, modifierToFlag: () => z23, modifiersToFlags: () => hr6, moduleOptionDeclaration: () => moduleOptionDeclaration, moduleResolutionIsEqualTo: () => dk, moduleResolutionNameAndModeGetter: () => moduleResolutionNameAndModeGetter, moduleResolutionOptionDeclarations: () => moduleResolutionOptionDeclarations, moduleResolutionSupportsPackageJsonExportsAndImports: () => $23, moduleResolutionUsesNodeModules: () => moduleResolutionUsesNodeModules, moduleSpecifiers: () => ts_moduleSpecifiers_exports, moveEmitHelpers: () => moveEmitHelpers, moveRangeEnd: () => vN, moveRangePastDecorators: () => yS, moveRangePastModifiers: () => TN, moveRangePos: () => wd, moveSyntheticComments: () => moveSyntheticComments, mutateMap: () => VN, mutateMapSkippingNewValues: () => SS, needsParentheses: () => needsParentheses, needsScopeMarker: () => DA, newCaseClauseTracker: () => newCaseClauseTracker, newPrivateEnvironment: () => newPrivateEnvironment, noEmitNotification: () => noEmitNotification, noEmitSubstitution: () => noEmitSubstitution, noTransformers: () => noTransformers, noTruncationMaximumTruncationLength: () => lx, nodeCanBeDecorated: () => GT, nodeHasName: () => A42, nodeIsDecorated: () => l_, nodeIsMissing: () => Vi6, nodeIsPresent: () => Cl4, nodeIsSynthesized: () => ya5, nodeModuleNameResolver: () => nodeModuleNameResolver, nodeModulesPathPart: () => nodeModulesPathPart, nodeNextJsonConfigResolver: () => nodeNextJsonConfigResolver, nodeOrChildIsDecorated: () => N02, nodeOverlapsWithStartEnd: () => nodeOverlapsWithStartEnd, nodePosToString: () => Ek, nodeSeenTracker: () => nodeSeenTracker, nodeStartsNewLexicalEnvironment: () => hI, nodeToDisplayParts: () => nodeToDisplayParts, noop: () => gr7, noopFileWatcher: () => noopFileWatcher, normalizePath: () => br6, normalizeSlashes: () => Vo2, not: () => wE, notImplemented: () => rE, notImplementedResolver: () => notImplementedResolver, nullNodeConverters: () => nullNodeConverters, nullParenthesizerRules: () => pb, nullTransformationContext: () => nullTransformationContext, objectAllocator: () => Ct11, operatorPart: () => operatorPart, optionDeclarations: () => optionDeclarations, optionMapToObject: () => optionMapToObject, optionsAffectingProgramStructure: () => optionsAffectingProgramStructure, optionsForBuild: () => optionsForBuild, optionsForWatch: () => optionsForWatch, optionsHaveChanges: () => w_, optionsHaveModuleResolutionChanges: () => wT, or: () => yg, orderedRemoveItem: () => gE, orderedRemoveItemAt: () => Nv, outFile: () => bm2, packageIdToPackageName: () => ET, packageIdToString: () => yk, paramHelper: () => paramHelper, parameterIsThisKeyword: () => $l3, parameterNamePart: () => parameterNamePart, parseBaseNodeFactory: () => og, parseBigInt: () => lM, parseBuildCommand: () => parseBuildCommand, parseCommandLine: () => parseCommandLine, parseCommandLineWorker: () => parseCommandLineWorker, parseConfigFileTextToJson: () => parseConfigFileTextToJson, parseConfigFileWithSystem: () => parseConfigFileWithSystem, parseConfigHostFromCompilerHostLike: () => parseConfigHostFromCompilerHostLike, parseCustomTypeOption: () => parseCustomTypeOption, parseIsolatedEntityName: () => nj, parseIsolatedJSDocComment: () => ij, parseJSDocTypeExpressionForTests: () => aj, parseJsonConfigFileContent: () => parseJsonConfigFileContent, parseJsonSourceFileConfigFileContent: () => parseJsonSourceFileConfigFileContent, parseJsonText: () => rj, parseListTypeOption: () => parseListTypeOption, parseNodeFactory: () => q_, parseNodeModuleFromPath: () => parseNodeModuleFromPath, parsePackageName: () => parsePackageName, parsePseudoBigInt: () => Cm2, parseValidBigInt: () => GS, patchWriteFileEnsuringDirectory: () => patchWriteFileEnsuringDirectory, pathContainsNodeModules: () => pathContainsNodeModules, pathIsAbsolute: () => Tg, pathIsBareSpecifier: () => zE, pathIsRelative: () => as5, patternText: () => vE, perfLogger: () => Zf2, performIncrementalCompilation: () => performIncrementalCompilation, performance: () => ts_performance_exports, plainJSErrors: () => plainJSErrors, positionBelongsToNode: () => positionBelongsToNode, positionIsASICandidate: () => positionIsASICandidate, positionIsSynthesized: () => Da4, positionsAreOnSameLine: () => D_, preProcessFile: () => preProcessFile, probablyUsesSemicolons: () => probablyUsesSemicolons, processCommentPragmas: () => V82, processPragmasIntoFields: () => H8, processTaggedTemplateExpression: () => processTaggedTemplateExpression, programContainsEsModules: () => programContainsEsModules, programContainsModules: () => programContainsModules, projectReferenceIsEqualTo: () => fk, propKeyHelper: () => propKeyHelper, propertyNamePart: () => propertyNamePart, pseudoBigIntToString: () => ib, punctuationPart: () => punctuationPart, pushIfUnique: () => Ll4, quote: () => quote, quotePreferenceFromString: () => quotePreferenceFromString, rangeContainsPosition: () => rangeContainsPosition, rangeContainsPositionExclusive: () => rangeContainsPositionExclusive, rangeContainsRange: () => rangeContainsRange, rangeContainsRangeExclusive: () => rangeContainsRangeExclusive, rangeContainsStartEnd: () => rangeContainsStartEnd, rangeEndIsOnSameLineAsRangeStart: () => AN, rangeEndPositionsAreOnSameLine: () => CN, rangeEquals: () => M9, rangeIsOnSingleLine: () => wN, rangeOfNode: () => sM, rangeOfTypeParameters: () => _M, rangeOverlapsWithStartEnd: () => rangeOverlapsWithStartEnd, rangeStartIsOnSameLineAsRangeEnd: () => gS, rangeStartPositionsAreOnSameLine: () => EN, readBuilderProgram: () => readBuilderProgram, readConfigFile: () => readConfigFile, readHelper: () => readHelper, readJson: () => bN, readJsonConfigFile: () => readJsonConfigFile, readJsonOrUndefined: () => dS, reduceEachLeadingCommentRange: () => Zv, reduceEachTrailingCommentRange: () => e4, reduceLeft: () => Fd, reduceLeftIterator: () => r9, reducePathComponents: () => Ca3, refactor: () => ts_refactor_exports, regExpEscape: () => qO, relativeComplement: () => I9, removeAllComments: () => removeAllComments, removeEmitHelper: () => removeEmitHelper, removeExtension: () => WS, removeFileExtension: () => Dl3, removeIgnoredPath: () => removeIgnoredPath, removeMinAndVersionNumbers: () => yE, removeOptionality: () => removeOptionality, removePrefix: () => SE, removeSuffix: () => mE, removeTrailingDirectorySeparator: () => v_, repeatString: () => repeatString, replaceElement: () => F9, resolutionExtensionIsTSOrJson: () => tM, resolveConfigFileProjectName: () => resolveConfigFileProjectName, resolveJSModule: () => resolveJSModule, resolveLibrary: () => resolveLibrary, resolveModuleName: () => resolveModuleName, resolveModuleNameFromCache: () => resolveModuleNameFromCache, resolvePackageNameToPackageJson: () => resolvePackageNameToPackageJson, resolvePath: () => g02, resolveProjectReferencePath: () => resolveProjectReferencePath, resolveTripleslashReference: () => resolveTripleslashReference, resolveTypeReferenceDirective: () => resolveTypeReferenceDirective, resolvingEmptyArray: () => _x, restHelper: () => restHelper, returnFalse: () => $f, returnNoopFileWatcher: () => returnNoopFileWatcher, returnTrue: () => Cv, returnUndefined: () => nE, returnsPromise: () => returnsPromise, runInitializersHelper: () => runInitializersHelper, sameFlatMap: () => hv, sameMap: () => u9, sameMapping: () => sameMapping, scanShebangTrivia: () => Pg, scanTokenAtPosition: () => fD, scanner: () => qo3, screenStartingMessageCodes: () => screenStartingMessageCodes, semanticDiagnosticsOptionDeclarations: () => semanticDiagnosticsOptionDeclarations, serializeCompilerOptions: () => serializeCompilerOptions, server: () => k7, servicesVersion: () => u7, setCommentRange: () => setCommentRange, setConfigFileInOptions: () => setConfigFileInOptions, setConstantValue: () => setConstantValue, setEachParent: () => a_, setEmitFlags: () => setEmitFlags, setFunctionNameHelper: () => setFunctionNameHelper, setGetSourceFileAsHashVersioned: () => setGetSourceFileAsHashVersioned, setIdentifierAutoGenerate: () => setIdentifierAutoGenerate, setIdentifierGeneratedImportReference: () => setIdentifierGeneratedImportReference, setIdentifierTypeArguments: () => setIdentifierTypeArguments, setInternalEmitFlags: () => setInternalEmitFlags, setLocalizedDiagnosticMessages: () => AS2, setModuleDefaultHelper: () => setModuleDefaultHelper, setNodeFlags: () => yM, setObjectAllocator: () => CS, setOriginalNode: () => nr6, setParent: () => Qi6, setParentRecursive: () => QS, setPrivateIdentifier: () => setPrivateIdentifier, setSnippetElement: () => setSnippetElement, setSourceMapRange: () => setSourceMapRange, setStackTraceLimit: () => setStackTraceLimit, setStartsOnNewLine: () => setStartsOnNewLine, setSyntheticLeadingComments: () => setSyntheticLeadingComments, setSyntheticTrailingComments: () => setSyntheticTrailingComments, setSys: () => setSys, setSysLog: () => setSysLog, setTextRange: () => We9, setTextRangeEnd: () => $S, setTextRangePos: () => Cd, setTextRangePosEnd: () => Za3, setTextRangePosWidth: () => Ad, setTokenSourceMapRange: () => setTokenSourceMapRange, setTypeNode: () => setTypeNode, setUILocale: () => Pv, setValueDeclaration: () => EP, shouldAllowImportingTsExtension: () => shouldAllowImportingTsExtension, shouldPreserveConstEnums: () => AO, shouldResolveJsRequire: () => wO, shouldUseUriStyleNodeCoreModules: () => shouldUseUriStyleNodeCoreModules, showModuleSpecifier: () => $N, signatureHasLiteralTypes: () => signatureHasLiteralTypes, signatureHasRestParameter: () => signatureHasRestParameter, signatureToDisplayParts: () => signatureToDisplayParts, single: () => R9, singleElementArray: () => Yf, singleIterator: () => g9, singleOrMany: () => j92, singleOrUndefined: () => jd, skipAlias: () => FN, skipAssertions: () => tR, skipConstraint: () => skipConstraint, skipOuterExpressions: () => ms7, skipParentheses: () => C_, skipPartiallyEmittedExpressions: () => rm2, skipTrivia: () => Mt7, skipTypeChecking: () => cM, skipTypeParentheses: () => GP, skipWhile: () => DE, sliceAfter: () => aM, some: () => Ze10, sort: () => Xf, sortAndDeduplicate: () => gv, sortAndDeduplicateDiagnostics: () => fC, sourceFileAffectingCompilerOptions: () => sourceFileAffectingCompilerOptions, sourceFileMayBeEmitted: () => J02, sourceMapCommentRegExp: () => sourceMapCommentRegExp, sourceMapCommentRegExpDontCareLineStart: () => sourceMapCommentRegExpDontCareLineStart, spacePart: () => spacePart, spanMap: () => b9, spreadArrayHelper: () => spreadArrayHelper, stableSort: () => Tv, startEndContainsRange: () => startEndContainsRange, startEndOverlapsWithStartEnd: () => startEndOverlapsWithStartEnd, startOnNewLine: () => qm2, startTracing: () => startTracing, startsWith: () => Hn7, startsWithDirectory: () => YE, startsWithUnderscore: () => startsWithUnderscore, startsWithUseStrict: () => k8, stringContainsAt: () => stringContainsAt, stringToToken: () => Fl3, stripQuotes: () => CI, supportedDeclarationExtensions: () => ub, supportedJSExtensions: () => Y0, supportedJSExtensionsFlat: () => lb, supportedLocaleDirectories: () => Kg, supportedTSExtensions: () => Bo4, supportedTSExtensionsFlat: () => cb, supportedTSImplementationExtensions: () => Px, suppressLeadingAndTrailingTrivia: () => suppressLeadingAndTrailingTrivia, suppressLeadingTrivia: () => suppressLeadingTrivia, suppressTrailingTrivia: () => suppressTrailingTrivia, symbolEscapedNameNoDefault: () => symbolEscapedNameNoDefault, symbolName: () => yd, symbolNameNoDefault: () => symbolNameNoDefault, symbolPart: () => symbolPart, symbolToDisplayParts: () => symbolToDisplayParts, syntaxMayBeASICandidate: () => syntaxMayBeASICandidate, syntaxRequiresTrailingSemicolonOrASI: () => syntaxRequiresTrailingSemicolonOrASI, sys: () => y02, sysLog: () => sysLog, tagNamesAreEquivalent: () => Ai6, takeWhile: () => kE, targetOptionDeclaration: () => targetOptionDeclaration, templateObjectHelper: () => templateObjectHelper, testFormatSettings: () => testFormatSettings, textChangeRangeIsUnchanged: () => v42, textChangeRangeNewSpan: () => Ys5, textChanges: () => ts_textChanges_exports, textOrKeywordPart: () => textOrKeywordPart, textPart: () => textPart, textRangeContainsPositionInclusive: () => mC, textSpanContainsPosition: () => dC, textSpanContainsTextSpan: () => hC, textSpanEnd: () => tn6, textSpanIntersection: () => b42, textSpanIntersectsWith: () => bC, textSpanIntersectsWithPosition: () => vC, textSpanIntersectsWithTextSpan: () => gC, textSpanIsEmpty: () => y42, textSpanOverlap: () => g4, textSpanOverlapsWith: () => yC, textSpansEqual: () => textSpansEqual, textToKeywordObj: () => pl4, timestamp: () => ga3, toArray: () => If, toBuilderFileEmit: () => toBuilderFileEmit, toBuilderStateFileInfoForMultiEmit: () => toBuilderStateFileInfoForMultiEmit, toEditorSettings: () => ll4, toFileNameLowerCase: () => kv, toLowerCase: () => Av, toPath: () => Di5, toProgramEmitPending: () => toProgramEmitPending, tokenIsIdentifierOrKeyword: () => wt9, tokenIsIdentifierOrKeywordOrGreaterThan: () => Yv, tokenToString: () => en6, trace: () => trace, tracing: () => ba3, tracingEnabled: () => tracingEnabled, transform: () => transform, transformClassFields: () => transformClassFields, transformDeclarations: () => transformDeclarations, transformECMAScriptModule: () => transformECMAScriptModule, transformES2015: () => transformES2015, transformES2016: () => transformES2016, transformES2017: () => transformES2017, transformES2018: () => transformES2018, transformES2019: () => transformES2019, transformES2020: () => transformES2020, transformES2021: () => transformES2021, transformES5: () => transformES5, transformESDecorators: () => transformESDecorators, transformESNext: () => transformESNext, transformGenerators: () => transformGenerators, transformJsx: () => transformJsx, transformLegacyDecorators: () => transformLegacyDecorators, transformModule: () => transformModule, transformNamedEvaluation: () => transformNamedEvaluation, transformNodeModule: () => transformNodeModule, transformNodes: () => transformNodes, transformSystemModule: () => transformSystemModule, transformTypeScript: () => transformTypeScript, transpile: () => transpile, transpileModule: () => transpileModule, transpileOptionValueCompilerOptions: () => transpileOptionValueCompilerOptions, tryAddToSet: () => y9, tryAndIgnoreErrors: () => tryAndIgnoreErrors, tryCast: () => Ur6, tryDirectoryExists: () => tryDirectoryExists, tryExtractTSExtension: () => dN, tryFileExists: () => tryFileExists, tryGetClassExtendingExpressionWithTypeArguments: () => _S, tryGetClassImplementingOrExtendingExpressionWithTypeArguments: () => cS, tryGetDirectories: () => tryGetDirectories, tryGetExtensionFromPath: () => nb, tryGetImportFromModuleSpecifier: () => _32, tryGetJSDocSatisfiesTypeNode: () => ox, tryGetModuleNameFromFile: () => N8, tryGetModuleSpecifierFromDeclaration: () => AP, tryGetNativePerformanceHooks: () => ME, tryGetPropertyAccessOrIdentifierToString: () => U02, tryGetPropertyNameOfBindingOrAssignmentElement: () => M8, tryGetSourceMappingURL: () => tryGetSourceMappingURL, tryGetTextOfPropertyName: () => n22, tryIOAndConsumeErrors: () => tryIOAndConsumeErrors, tryParsePattern: () => VS, tryParsePatterns: () => eM, tryParseRawSourceMap: () => tryParseRawSourceMap, tryReadDirectory: () => tryReadDirectory, tryReadFile: () => tryReadFile, tryRemoveDirectoryPrefix: () => UO, tryRemoveExtension: () => zS, tryRemovePrefix: () => Lv, tryRemoveSuffix: () => hE, typeAcquisitionDeclarations: () => typeAcquisitionDeclarations, typeAliasNamePart: () => typeAliasNamePart, typeDirectiveIsEqualTo: () => gk, typeKeywords: () => typeKeywords, typeParameterNamePart: () => typeParameterNamePart, typeReferenceResolutionNameAndModeGetter: () => typeReferenceResolutionNameAndModeGetter, typeToDisplayParts: () => typeToDisplayParts, unchangedPollThresholds: () => unchangedPollThresholds, unchangedTextChangeRange: () => Yg, unescapeLeadingUnderscores: () => Go3, unmangleScopedPackageName: () => unmangleScopedPackageName, unorderedRemoveItem: () => Ov, unorderedRemoveItemAt: () => mg, unreachableCodeIsError: () => vO, unusedLabelIsError: () => TO, unwrapInnermostStatementOfLabel: () => OD, updateErrorForNoInputFiles: () => updateErrorForNoInputFiles, updateLanguageServiceSourceFile: () => _7, updateMissingFilePathsWatch: () => updateMissingFilePathsWatch, updatePackageJsonWatch: () => updatePackageJsonWatch, updateResolutionField: () => updateResolutionField, updateSharedExtendedConfigFileWatcher: () => updateSharedExtendedConfigFileWatcher, updateSourceFile: () => Yb, updateWatchingWildcardDirectories: () => updateWatchingWildcardDirectories, usesExtensionsOnImports: () => qS, usingSingleLineStringWriter: () => pk, utf16EncodeAsString: () => Of, validateLocaleAndSetLanguage: () => EC, valuesHelper: () => valuesHelper, version: () => Gf, versionMajorMinor: () => Rd, visitArray: () => visitArray, visitCommaListElements: () => visitCommaListElements, visitEachChild: () => visitEachChild, visitFunctionBody: () => visitFunctionBody, visitIterationBody: () => visitIterationBody, visitLexicalEnvironment: () => visitLexicalEnvironment, visitNode: () => visitNode, visitNodes: () => visitNodes2, visitParameterList: () => visitParameterList, walkUpBindingElementsAndPatterns: () => w42, walkUpLexicalEnvironments: () => walkUpLexicalEnvironments, walkUpOuterExpressions: () => eR, walkUpParenthesizedExpressions: () => y32, walkUpParenthesizedTypes: () => VP, walkUpParenthesizedTypesAndGetParentAndChild: () => HP, whitespaceOrMapCommentRegExp: () => whitespaceOrMapCommentRegExp, writeCommentRange: () => XI, writeFile: () => JI, writeFileEnsuringDirectories: () => RI, zipWith: () => iy });
|
|
302404
302404
|
var uv = It9({ "src/typescript/_namespaces/ts.ts"() {
|
|
302405
302405
|
"use strict";
|
|
302406
302406
|
En5(), Kb(), S7(), KF(), ZF();
|
|
@@ -343939,8 +343939,8 @@ var require_dataType = __commonJS({
|
|
|
343939
343939
|
return types2;
|
|
343940
343940
|
}
|
|
343941
343941
|
exports2.getSchemaTypes = getSchemaTypes;
|
|
343942
|
-
function getJSONTypes(
|
|
343943
|
-
const types2 = Array.isArray(
|
|
343942
|
+
function getJSONTypes(ts8) {
|
|
343943
|
+
const types2 = Array.isArray(ts8) ? ts8 : ts8 ? [ts8] : [];
|
|
343944
343944
|
if (types2.every(rules_1.isJSONType))
|
|
343945
343945
|
return types2;
|
|
343946
343946
|
throw new Error("type must be JSONType or JSONType[]: " + types2.join(","));
|
|
@@ -344992,18 +344992,18 @@ var require_validate = __commonJS({
|
|
|
344992
344992
|
});
|
|
344993
344993
|
narrowSchemaTypes(it6, types2);
|
|
344994
344994
|
}
|
|
344995
|
-
function checkMultipleTypes(it6,
|
|
344996
|
-
if (
|
|
344995
|
+
function checkMultipleTypes(it6, ts8) {
|
|
344996
|
+
if (ts8.length > 1 && !(ts8.length === 2 && ts8.includes("null"))) {
|
|
344997
344997
|
strictTypesError(it6, "use allowUnionTypes to allow union type keyword");
|
|
344998
344998
|
}
|
|
344999
344999
|
}
|
|
345000
|
-
function checkKeywordTypes(it6,
|
|
345000
|
+
function checkKeywordTypes(it6, ts8) {
|
|
345001
345001
|
const rules = it6.self.RULES.all;
|
|
345002
345002
|
for (const keyword in rules) {
|
|
345003
345003
|
const rule = rules[keyword];
|
|
345004
345004
|
if (typeof rule == "object" && (0, applicability_1.shouldUseRule)(it6.schema, rule)) {
|
|
345005
345005
|
const { type: type2 } = rule.definition;
|
|
345006
|
-
if (type2.length && !type2.some((t13) => hasApplicableType(
|
|
345006
|
+
if (type2.length && !type2.some((t13) => hasApplicableType(ts8, t13))) {
|
|
345007
345007
|
strictTypesError(it6, `missing type "${type2.join(",")}" for keyword "${keyword}"`);
|
|
345008
345008
|
}
|
|
345009
345009
|
}
|
|
@@ -345012,18 +345012,18 @@ var require_validate = __commonJS({
|
|
|
345012
345012
|
function hasApplicableType(schTs, kwdT) {
|
|
345013
345013
|
return schTs.includes(kwdT) || kwdT === "number" && schTs.includes("integer");
|
|
345014
345014
|
}
|
|
345015
|
-
function includesType(
|
|
345016
|
-
return
|
|
345015
|
+
function includesType(ts8, t13) {
|
|
345016
|
+
return ts8.includes(t13) || t13 === "integer" && ts8.includes("number");
|
|
345017
345017
|
}
|
|
345018
345018
|
function narrowSchemaTypes(it6, withTypes) {
|
|
345019
|
-
const
|
|
345019
|
+
const ts8 = [];
|
|
345020
345020
|
for (const t13 of it6.dataTypes) {
|
|
345021
345021
|
if (includesType(withTypes, t13))
|
|
345022
|
-
|
|
345022
|
+
ts8.push(t13);
|
|
345023
345023
|
else if (withTypes.includes("integer") && t13 === "number")
|
|
345024
|
-
|
|
345024
|
+
ts8.push("integer");
|
|
345025
345025
|
}
|
|
345026
|
-
it6.dataTypes =
|
|
345026
|
+
it6.dataTypes = ts8;
|
|
345027
345027
|
}
|
|
345028
345028
|
function strictTypesError(it6, msg) {
|
|
345029
345029
|
const schemaPath = it6.schemaEnv.baseId + it6.errSchemaPath;
|
|
@@ -381738,14 +381738,14 @@ var require_stream_transform = __commonJS({
|
|
|
381738
381738
|
var Duplex = require_stream_duplex();
|
|
381739
381739
|
require_inherits()(Transform, Duplex);
|
|
381740
381740
|
function afterTransform(er7, data) {
|
|
381741
|
-
var
|
|
381742
|
-
|
|
381743
|
-
var cb =
|
|
381741
|
+
var ts8 = this._transformState;
|
|
381742
|
+
ts8.transforming = false;
|
|
381743
|
+
var cb = ts8.writecb;
|
|
381744
381744
|
if (cb === null) {
|
|
381745
381745
|
return this.emit("error", new ERR_MULTIPLE_CALLBACK());
|
|
381746
381746
|
}
|
|
381747
|
-
|
|
381748
|
-
|
|
381747
|
+
ts8.writechunk = null;
|
|
381748
|
+
ts8.writecb = null;
|
|
381749
381749
|
if (data != null)
|
|
381750
381750
|
this.push(data);
|
|
381751
381751
|
cb(er7);
|
|
@@ -381795,23 +381795,23 @@ var require_stream_transform = __commonJS({
|
|
|
381795
381795
|
cb(new ERR_METHOD_NOT_IMPLEMENTED("_transform()"));
|
|
381796
381796
|
};
|
|
381797
381797
|
Transform.prototype._write = function(chunk, encoding, cb) {
|
|
381798
|
-
var
|
|
381799
|
-
|
|
381800
|
-
|
|
381801
|
-
|
|
381802
|
-
if (!
|
|
381798
|
+
var ts8 = this._transformState;
|
|
381799
|
+
ts8.writecb = cb;
|
|
381800
|
+
ts8.writechunk = chunk;
|
|
381801
|
+
ts8.writeencoding = encoding;
|
|
381802
|
+
if (!ts8.transforming) {
|
|
381803
381803
|
var rs6 = this._readableState;
|
|
381804
|
-
if (
|
|
381804
|
+
if (ts8.needTransform || rs6.needReadable || rs6.length < rs6.highWaterMark)
|
|
381805
381805
|
this._read(rs6.highWaterMark);
|
|
381806
381806
|
}
|
|
381807
381807
|
};
|
|
381808
381808
|
Transform.prototype._read = function(n) {
|
|
381809
|
-
var
|
|
381810
|
-
if (
|
|
381811
|
-
|
|
381812
|
-
this._transform(
|
|
381809
|
+
var ts8 = this._transformState;
|
|
381810
|
+
if (ts8.writechunk !== null && !ts8.transforming) {
|
|
381811
|
+
ts8.transforming = true;
|
|
381812
|
+
this._transform(ts8.writechunk, ts8.writeencoding, ts8.afterTransform);
|
|
381813
381813
|
} else {
|
|
381814
|
-
|
|
381814
|
+
ts8.needTransform = true;
|
|
381815
381815
|
}
|
|
381816
381816
|
};
|
|
381817
381817
|
Transform.prototype._destroy = function(err, cb) {
|
|
@@ -391751,30 +391751,30 @@ var require_run_type_check = __commonJS({
|
|
|
391751
391751
|
var highlight_1 = require_highlight();
|
|
391752
391752
|
var ts_config_1 = require_ts_config();
|
|
391753
391753
|
async function runTypeCheckWatch(options8, callback) {
|
|
391754
|
-
const { ts:
|
|
391755
|
-
const host =
|
|
391754
|
+
const { ts: ts8, workspaceRoot, config, compilerOptions } = await setupTypeScript(options8);
|
|
391755
|
+
const host = ts8.createWatchCompilerHost(config.fileNames, compilerOptions, ts8.sys, ts8.createEmitAndSemanticDiagnosticsBuilderProgram);
|
|
391756
391756
|
const originalOnWatchStatusChange = host.onWatchStatusChange;
|
|
391757
391757
|
host.onWatchStatusChange = (diagnostic, newLine, opts, errorCount) => {
|
|
391758
391758
|
originalOnWatchStatusChange?.(diagnostic, newLine, opts, errorCount);
|
|
391759
|
-
callback(diagnostic, getFormattedDiagnostic(
|
|
391759
|
+
callback(diagnostic, getFormattedDiagnostic(ts8, workspaceRoot, diagnostic), errorCount);
|
|
391760
391760
|
};
|
|
391761
|
-
const watchProgram =
|
|
391761
|
+
const watchProgram = ts8.createWatchProgram(host);
|
|
391762
391762
|
const program = watchProgram.getProgram().getProgram();
|
|
391763
|
-
const diagnostics =
|
|
391763
|
+
const diagnostics = ts8.getPreEmitDiagnostics(program);
|
|
391764
391764
|
return {
|
|
391765
391765
|
close: watchProgram.close.bind(watchProgram),
|
|
391766
|
-
preEmitErrors: diagnostics.filter((d4) => d4.category ===
|
|
391767
|
-
preEmitWarnings: diagnostics.filter((d4) => d4.category ===
|
|
391766
|
+
preEmitErrors: diagnostics.filter((d4) => d4.category === ts8.DiagnosticCategory.Error).map((d4) => getFormattedDiagnostic(ts8, workspaceRoot, d4)),
|
|
391767
|
+
preEmitWarnings: diagnostics.filter((d4) => d4.category === ts8.DiagnosticCategory.Warning).map((d4) => getFormattedDiagnostic(ts8, workspaceRoot, d4))
|
|
391768
391768
|
};
|
|
391769
391769
|
}
|
|
391770
391770
|
exports2.runTypeCheckWatch = runTypeCheckWatch;
|
|
391771
391771
|
async function runTypeCheck(options8) {
|
|
391772
|
-
const { ts:
|
|
391772
|
+
const { ts: ts8, workspaceRoot, cacheDir, config, compilerOptions } = await setupTypeScript(options8);
|
|
391773
391773
|
let program;
|
|
391774
391774
|
let incremental = false;
|
|
391775
391775
|
if (compilerOptions.incremental && cacheDir) {
|
|
391776
391776
|
incremental = true;
|
|
391777
|
-
program =
|
|
391777
|
+
program = ts8.createIncrementalProgram({
|
|
391778
391778
|
rootNames: config.fileNames,
|
|
391779
391779
|
options: {
|
|
391780
391780
|
...compilerOptions,
|
|
@@ -391783,15 +391783,15 @@ var require_run_type_check = __commonJS({
|
|
|
391783
391783
|
}
|
|
391784
391784
|
});
|
|
391785
391785
|
} else {
|
|
391786
|
-
program =
|
|
391786
|
+
program = ts8.createProgram(config.fileNames, compilerOptions);
|
|
391787
391787
|
}
|
|
391788
391788
|
const result = program.emit();
|
|
391789
|
-
const allDiagnostics =
|
|
391790
|
-
return getTypeCheckResult(
|
|
391789
|
+
const allDiagnostics = ts8.getPreEmitDiagnostics(program).concat(result.diagnostics);
|
|
391790
|
+
return getTypeCheckResult(ts8, allDiagnostics, workspaceRoot, config.fileNames.length, program.getSourceFiles().length, incremental);
|
|
391791
391791
|
}
|
|
391792
391792
|
exports2.runTypeCheck = runTypeCheck;
|
|
391793
391793
|
async function setupTypeScript(options8) {
|
|
391794
|
-
const
|
|
391794
|
+
const ts8 = await Promise.resolve().then(() => require_typescript());
|
|
391795
391795
|
const { workspaceRoot, tsConfigPath, cacheDir, incremental, rootDir } = options8;
|
|
391796
391796
|
const config = (0, ts_config_1.readTsConfig)(tsConfigPath);
|
|
391797
391797
|
if (config.errors.length) {
|
|
@@ -391806,11 +391806,11 @@ var require_run_type_check = __commonJS({
|
|
|
391806
391806
|
incremental,
|
|
391807
391807
|
rootDir: rootDir || config.options.rootDir
|
|
391808
391808
|
};
|
|
391809
|
-
return { ts:
|
|
391809
|
+
return { ts: ts8, workspaceRoot, cacheDir, config, compilerOptions };
|
|
391810
391810
|
}
|
|
391811
|
-
function getTypeCheckResult(
|
|
391812
|
-
const errors = allDiagnostics.filter((d4) => d4.category ===
|
|
391813
|
-
const warnings = allDiagnostics.filter((d4) => d4.category ===
|
|
391811
|
+
function getTypeCheckResult(ts8, allDiagnostics, workspaceRoot, inputFilesCount, totalFilesCount, incremental = false) {
|
|
391812
|
+
const errors = allDiagnostics.filter((d4) => d4.category === ts8.DiagnosticCategory.Error).map((d4) => getFormattedDiagnostic(ts8, workspaceRoot, d4));
|
|
391813
|
+
const warnings = allDiagnostics.filter((d4) => d4.category === ts8.DiagnosticCategory.Warning).map((d4) => getFormattedDiagnostic(ts8, workspaceRoot, d4));
|
|
391814
391814
|
return {
|
|
391815
391815
|
warnings,
|
|
391816
391816
|
errors,
|
|
@@ -391819,21 +391819,21 @@ var require_run_type_check = __commonJS({
|
|
|
391819
391819
|
incremental
|
|
391820
391820
|
};
|
|
391821
391821
|
}
|
|
391822
|
-
function getFormattedDiagnostic(
|
|
391822
|
+
function getFormattedDiagnostic(ts8, workspaceRoot, diagnostic) {
|
|
391823
391823
|
let message = "";
|
|
391824
|
-
const reason =
|
|
391824
|
+
const reason = ts8.flattenDiagnosticMessageText(diagnostic.messageText, "\n");
|
|
391825
391825
|
const category = diagnostic.category;
|
|
391826
391826
|
switch (category) {
|
|
391827
|
-
case
|
|
391827
|
+
case ts8.DiagnosticCategory.Warning: {
|
|
391828
391828
|
message += `${chalk3.yellow.bold("warning")} ${chalk3.gray(`TS${diagnostic.code}`)}: `;
|
|
391829
391829
|
break;
|
|
391830
391830
|
}
|
|
391831
|
-
case
|
|
391831
|
+
case ts8.DiagnosticCategory.Error: {
|
|
391832
391832
|
message += `${chalk3.red.bold("error")} ${chalk3.gray(`TS${diagnostic.code}`)}: `;
|
|
391833
391833
|
break;
|
|
391834
391834
|
}
|
|
391835
|
-
case
|
|
391836
|
-
case
|
|
391835
|
+
case ts8.DiagnosticCategory.Suggestion:
|
|
391836
|
+
case ts8.DiagnosticCategory.Message:
|
|
391837
391837
|
default: {
|
|
391838
391838
|
message += `${chalk3.cyan.bold(category === 2 ? "suggestion" : "info")}: `;
|
|
391839
391839
|
break;
|
|
@@ -397616,10 +397616,10 @@ var require_ast_utils2 = __commonJS({
|
|
|
397616
397616
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
397617
397617
|
exports2.generateAst = exports2.mapFilePaths = exports2.generateFlatOverride = exports2.generateRequire = exports2.stringifyNodeList = exports2.generatePluginExtendsElement = exports2.generateSpreadElement = exports2.createNodeList = exports2.addCompatToFlatConfig = exports2.addPluginsToExportsBlock = exports2.removeCompatExtends = exports2.removePlugin = exports2.addBlockToFlatConfigExport = exports2.addImportToFlatConfig = exports2.replaceOverride = exports2.hasOverride = exports2.removeOverridesFromLintConfig = void 0;
|
|
397618
397618
|
var devkit_1 = require_devkit();
|
|
397619
|
-
var
|
|
397619
|
+
var ts8 = require_typescript();
|
|
397620
397620
|
var path_utils_1 = require_path_utils();
|
|
397621
397621
|
function removeOverridesFromLintConfig(content) {
|
|
397622
|
-
const source2 =
|
|
397622
|
+
const source2 = ts8.createSourceFile("", content, ts8.ScriptTarget.Latest, true, ts8.ScriptKind.JS);
|
|
397623
397623
|
const exportsArray = findAllBlocks(source2);
|
|
397624
397624
|
if (!exportsArray) {
|
|
397625
397625
|
return content;
|
|
@@ -397639,18 +397639,18 @@ var require_ast_utils2 = __commonJS({
|
|
|
397639
397639
|
}
|
|
397640
397640
|
exports2.removeOverridesFromLintConfig = removeOverridesFromLintConfig;
|
|
397641
397641
|
function findAllBlocks(source2) {
|
|
397642
|
-
return
|
|
397643
|
-
if (
|
|
397642
|
+
return ts8.forEachChild(source2, function analyze(node) {
|
|
397643
|
+
if (ts8.isExpressionStatement(node) && ts8.isBinaryExpression(node.expression) && node.expression.left.getText() === "module.exports" && ts8.isArrayLiteralExpression(node.expression.right)) {
|
|
397644
397644
|
return node.expression.right.elements;
|
|
397645
397645
|
}
|
|
397646
397646
|
});
|
|
397647
397647
|
}
|
|
397648
397648
|
function isOverride(node) {
|
|
397649
|
-
return
|
|
397650
|
-
|
|
397649
|
+
return ts8.isObjectLiteralExpression(node) && node.properties.some((p4) => p4.name.getText() === "files") || // detect ...compat.config(...).map(...)
|
|
397650
|
+
ts8.isSpreadElement(node) && ts8.isCallExpression(node.expression) && ts8.isPropertyAccessExpression(node.expression.expression) && ts8.isArrowFunction(node.expression.arguments[0]) && ts8.isParenthesizedExpression(node.expression.arguments[0].body);
|
|
397651
397651
|
}
|
|
397652
397652
|
function hasOverride(content, lookup) {
|
|
397653
|
-
const source2 =
|
|
397653
|
+
const source2 = ts8.createSourceFile("", content, ts8.ScriptTarget.Latest, true, ts8.ScriptKind.JS);
|
|
397654
397654
|
const exportsArray = findAllBlocks(source2);
|
|
397655
397655
|
if (!exportsArray) {
|
|
397656
397656
|
return false;
|
|
@@ -397658,7 +397658,7 @@ var require_ast_utils2 = __commonJS({
|
|
|
397658
397658
|
for (const node of exportsArray) {
|
|
397659
397659
|
if (isOverride(node)) {
|
|
397660
397660
|
let objSource;
|
|
397661
|
-
if (
|
|
397661
|
+
if (ts8.isObjectLiteralExpression(node)) {
|
|
397662
397662
|
objSource = node.getFullText();
|
|
397663
397663
|
} else {
|
|
397664
397664
|
const fullNodeText = node["expression"].arguments[0].body.expression.getFullText();
|
|
@@ -397678,7 +397678,7 @@ var require_ast_utils2 = __commonJS({
|
|
|
397678
397678
|
return (0, devkit_1.parseJson)(text.replace(/'/g, '"').replace(/\s([a-zA-Z0-9_]+)\s*:/g, ' "$1": '));
|
|
397679
397679
|
}
|
|
397680
397680
|
function replaceOverride(content, root2, lookup, update) {
|
|
397681
|
-
const source2 =
|
|
397681
|
+
const source2 = ts8.createSourceFile("", content, ts8.ScriptTarget.Latest, true, ts8.ScriptKind.JS);
|
|
397682
397682
|
const exportsArray = findAllBlocks(source2);
|
|
397683
397683
|
if (!exportsArray) {
|
|
397684
397684
|
return content;
|
|
@@ -397688,7 +397688,7 @@ var require_ast_utils2 = __commonJS({
|
|
|
397688
397688
|
if (isOverride(node)) {
|
|
397689
397689
|
let objSource;
|
|
397690
397690
|
let start, end;
|
|
397691
|
-
if (
|
|
397691
|
+
if (ts8.isObjectLiteralExpression(node)) {
|
|
397692
397692
|
objSource = node.getFullText();
|
|
397693
397693
|
start = node.properties.pos + 1;
|
|
397694
397694
|
end = node.properties.end;
|
|
@@ -397722,13 +397722,13 @@ var require_ast_utils2 = __commonJS({
|
|
|
397722
397722
|
}
|
|
397723
397723
|
exports2.replaceOverride = replaceOverride;
|
|
397724
397724
|
function addImportToFlatConfig(content, variable, imp) {
|
|
397725
|
-
const printer2 =
|
|
397726
|
-
const source2 =
|
|
397727
|
-
const foundBindingVars =
|
|
397725
|
+
const printer2 = ts8.createPrinter({ newLine: ts8.NewLineKind.LineFeed });
|
|
397726
|
+
const source2 = ts8.createSourceFile("", content, ts8.ScriptTarget.Latest, true, ts8.ScriptKind.JS);
|
|
397727
|
+
const foundBindingVars = ts8.forEachChild(source2, function analyze(node) {
|
|
397728
397728
|
if (!Array.isArray(variable)) {
|
|
397729
397729
|
return;
|
|
397730
397730
|
}
|
|
397731
|
-
if (
|
|
397731
|
+
if (ts8.isVariableStatement(node) && ts8.isVariableDeclaration(node.declarationList.declarations[0]) && ts8.isObjectBindingPattern(node.declarationList.declarations[0].name) && ts8.isCallExpression(node.declarationList.declarations[0].initializer) && node.declarationList.declarations[0].initializer.expression.getText() === "require" && ts8.isStringLiteral(node.declarationList.declarations[0].initializer.arguments[0]) && node.declarationList.declarations[0].initializer.arguments[0].text === imp) {
|
|
397732
397732
|
return node.declarationList.declarations[0].name.elements;
|
|
397733
397733
|
}
|
|
397734
397734
|
});
|
|
@@ -397739,8 +397739,8 @@ var require_ast_utils2 = __commonJS({
|
|
|
397739
397739
|
}
|
|
397740
397740
|
const isMultiLine = foundBindingVars.hasTrailingComma;
|
|
397741
397741
|
const pos2 = foundBindingVars.end;
|
|
397742
|
-
const nodes =
|
|
397743
|
-
const insert2 = printer2.printList(
|
|
397742
|
+
const nodes = ts8.factory.createNodeArray(newVariables.map((v5) => ts8.factory.createBindingElement(void 0, void 0, v5)));
|
|
397743
|
+
const insert2 = printer2.printList(ts8.ListFormat.ObjectBindingPatternElements, nodes, source2);
|
|
397744
397744
|
return (0, devkit_1.applyChangesToString)(content, [
|
|
397745
397745
|
{
|
|
397746
397746
|
type: devkit_1.ChangeType.Insert,
|
|
@@ -397750,19 +397750,19 @@ ${insert2}` : `,${insert2}`
|
|
|
397750
397750
|
}
|
|
397751
397751
|
]);
|
|
397752
397752
|
}
|
|
397753
|
-
const hasSameIdentifierVar =
|
|
397753
|
+
const hasSameIdentifierVar = ts8.forEachChild(source2, function analyze(node) {
|
|
397754
397754
|
if (Array.isArray(variable)) {
|
|
397755
397755
|
return;
|
|
397756
397756
|
}
|
|
397757
|
-
if (
|
|
397757
|
+
if (ts8.isVariableStatement(node) && ts8.isVariableDeclaration(node.declarationList.declarations[0]) && ts8.isIdentifier(node.declarationList.declarations[0].name) && node.declarationList.declarations[0].name.getText() === variable && ts8.isCallExpression(node.declarationList.declarations[0].initializer) && node.declarationList.declarations[0].initializer.expression.getText() === "require" && ts8.isStringLiteral(node.declarationList.declarations[0].initializer.arguments[0]) && node.declarationList.declarations[0].initializer.arguments[0].text === imp) {
|
|
397758
397758
|
return true;
|
|
397759
397759
|
}
|
|
397760
397760
|
});
|
|
397761
397761
|
if (hasSameIdentifierVar) {
|
|
397762
397762
|
return content;
|
|
397763
397763
|
}
|
|
397764
|
-
const requireStatement = generateRequire(typeof variable === "string" ? variable :
|
|
397765
|
-
const insert = printer2.printNode(
|
|
397764
|
+
const requireStatement = generateRequire(typeof variable === "string" ? variable : ts8.factory.createObjectBindingPattern(variable.map((v5) => ts8.factory.createBindingElement(void 0, void 0, v5))), imp);
|
|
397765
|
+
const insert = printer2.printNode(ts8.EmitHint.Unspecified, requireStatement, source2);
|
|
397766
397766
|
return (0, devkit_1.applyChangesToString)(content, [
|
|
397767
397767
|
{
|
|
397768
397768
|
type: devkit_1.ChangeType.Insert,
|
|
@@ -397776,14 +397776,14 @@ ${insert2}` : `,${insert2}`
|
|
|
397776
397776
|
function addBlockToFlatConfigExport(content, config, options8 = {
|
|
397777
397777
|
insertAtTheEnd: true
|
|
397778
397778
|
}) {
|
|
397779
|
-
const printer2 =
|
|
397780
|
-
const source2 =
|
|
397781
|
-
const exportsArray =
|
|
397782
|
-
if (
|
|
397779
|
+
const printer2 = ts8.createPrinter({ newLine: ts8.NewLineKind.LineFeed });
|
|
397780
|
+
const source2 = ts8.createSourceFile("", content, ts8.ScriptTarget.Latest, true, ts8.ScriptKind.JS);
|
|
397781
|
+
const exportsArray = ts8.forEachChild(source2, function analyze(node) {
|
|
397782
|
+
if (ts8.isExpressionStatement(node) && ts8.isBinaryExpression(node.expression) && node.expression.left.getText() === "module.exports" && ts8.isArrayLiteralExpression(node.expression.right)) {
|
|
397783
397783
|
return node.expression.right.elements;
|
|
397784
397784
|
}
|
|
397785
397785
|
});
|
|
397786
|
-
const insert = printer2.printNode(
|
|
397786
|
+
const insert = printer2.printNode(ts8.EmitHint.Expression, config, source2);
|
|
397787
397787
|
if (options8.insertAtTheEnd) {
|
|
397788
397788
|
const index = exportsArray.length > 0 ? exportsArray.at(exportsArray.length - 1).end : exportsArray.pos;
|
|
397789
397789
|
return (0, devkit_1.applyChangesToString)(content, [
|
|
@@ -397808,10 +397808,10 @@ ${insert},`
|
|
|
397808
397808
|
}
|
|
397809
397809
|
exports2.addBlockToFlatConfigExport = addBlockToFlatConfigExport;
|
|
397810
397810
|
function removePlugin(content, pluginName, pluginImport) {
|
|
397811
|
-
const source2 =
|
|
397811
|
+
const source2 = ts8.createSourceFile("", content, ts8.ScriptTarget.Latest, true, ts8.ScriptKind.JS);
|
|
397812
397812
|
const changes = [];
|
|
397813
|
-
|
|
397814
|
-
if (
|
|
397813
|
+
ts8.forEachChild(source2, function analyze(node) {
|
|
397814
|
+
if (ts8.isVariableStatement(node) && ts8.isVariableDeclaration(node.declarationList.declarations[0]) && ts8.isCallExpression(node.declarationList.declarations[0].initializer) && node.declarationList.declarations[0].initializer.arguments.length && ts8.isStringLiteral(node.declarationList.declarations[0].initializer.arguments[0]) && node.declarationList.declarations[0].initializer.arguments[0].text === pluginImport) {
|
|
397815
397815
|
changes.push({
|
|
397816
397816
|
type: devkit_1.ChangeType.Delete,
|
|
397817
397817
|
start: node.pos,
|
|
@@ -397819,16 +397819,16 @@ ${insert},`
|
|
|
397819
397819
|
});
|
|
397820
397820
|
}
|
|
397821
397821
|
});
|
|
397822
|
-
|
|
397823
|
-
if (
|
|
397822
|
+
ts8.forEachChild(source2, function analyze(node) {
|
|
397823
|
+
if (ts8.isExpressionStatement(node) && ts8.isBinaryExpression(node.expression) && node.expression.left.getText() === "module.exports" && ts8.isArrayLiteralExpression(node.expression.right)) {
|
|
397824
397824
|
const blockElements = node.expression.right.elements;
|
|
397825
397825
|
blockElements.forEach((element) => {
|
|
397826
|
-
if (
|
|
397826
|
+
if (ts8.isObjectLiteralExpression(element)) {
|
|
397827
397827
|
const pluginsElem = element.properties.find((prop) => prop.name?.getText() === "plugins");
|
|
397828
397828
|
if (!pluginsElem) {
|
|
397829
397829
|
return;
|
|
397830
397830
|
}
|
|
397831
|
-
if (
|
|
397831
|
+
if (ts8.isArrayLiteralExpression(pluginsElem.initializer)) {
|
|
397832
397832
|
const pluginsArray = pluginsElem.initializer;
|
|
397833
397833
|
const plugins = parseTextToJson(pluginsElem.initializer.getText().replace(STRIP_SPREAD_ELEMENTS, ""));
|
|
397834
397834
|
if (plugins.length > 1) {
|
|
@@ -397860,7 +397860,7 @@ ${insert},`
|
|
|
397860
397860
|
});
|
|
397861
397861
|
}
|
|
397862
397862
|
}
|
|
397863
|
-
} else if (
|
|
397863
|
+
} else if (ts8.isObjectLiteralExpression(pluginsElem.initializer)) {
|
|
397864
397864
|
const pluginsObj = pluginsElem.initializer;
|
|
397865
397865
|
if (pluginsElem.initializer.properties.length > 1) {
|
|
397866
397866
|
const plugin = pluginsObj.properties.find((prop) => prop.name?.["text"] === pluginName);
|
|
@@ -397897,10 +397897,10 @@ ${insert},`
|
|
|
397897
397897
|
}
|
|
397898
397898
|
exports2.removePlugin = removePlugin;
|
|
397899
397899
|
function removeCompatExtends(content, compatExtends) {
|
|
397900
|
-
const source2 =
|
|
397900
|
+
const source2 = ts8.createSourceFile("", content, ts8.ScriptTarget.Latest, true, ts8.ScriptKind.JS);
|
|
397901
397901
|
const changes = [];
|
|
397902
397902
|
findAllBlocks(source2).forEach((node) => {
|
|
397903
|
-
if (
|
|
397903
|
+
if (ts8.isSpreadElement(node) && ts8.isCallExpression(node.expression) && ts8.isArrowFunction(node.expression.arguments[0]) && ts8.isParenthesizedExpression(node.expression.arguments[0].body) && ts8.isPropertyAccessExpression(node.expression.expression) && ts8.isCallExpression(node.expression.expression.expression)) {
|
|
397904
397904
|
const callExp = node.expression.expression.expression;
|
|
397905
397905
|
if ((callExp.expression.getText() === "compat.config" && callExp.arguments[0].getText().includes("extends") || callExp.expression.getText() === "compat.extends") && compatExtends.some((ext2) => callExp.arguments[0].getText().includes(ext2))) {
|
|
397906
397906
|
changes.push({
|
|
@@ -397922,9 +397922,9 @@ ${insert},`
|
|
|
397922
397922
|
}
|
|
397923
397923
|
exports2.removeCompatExtends = removeCompatExtends;
|
|
397924
397924
|
function addPluginsToExportsBlock(content, plugins) {
|
|
397925
|
-
const pluginsBlock =
|
|
397926
|
-
|
|
397927
|
-
return
|
|
397925
|
+
const pluginsBlock = ts8.factory.createObjectLiteralExpression([
|
|
397926
|
+
ts8.factory.createPropertyAssignment("plugins", ts8.factory.createObjectLiteralExpression(plugins.map(({ name, varName }) => {
|
|
397927
|
+
return ts8.factory.createPropertyAssignment(ts8.factory.createStringLiteral(name), ts8.factory.createIdentifier(varName));
|
|
397928
397928
|
})))
|
|
397929
397929
|
], false);
|
|
397930
397930
|
return addBlockToFlatConfigExport(content, pluginsBlock, {
|
|
@@ -397960,41 +397960,41 @@ const compat = new FlatCompat({
|
|
|
397960
397960
|
const importsList = [];
|
|
397961
397961
|
if (isFlatCompatNeeded) {
|
|
397962
397962
|
importsMap.set("@eslint/js", "js");
|
|
397963
|
-
importsList.push(generateRequire(
|
|
397964
|
-
|
|
397963
|
+
importsList.push(generateRequire(ts8.factory.createObjectBindingPattern([
|
|
397964
|
+
ts8.factory.createBindingElement(void 0, void 0, "FlatCompat")
|
|
397965
397965
|
]), "@eslint/eslintrc"));
|
|
397966
397966
|
}
|
|
397967
397967
|
Array.from(importsMap.entries()).forEach(([imp, varName]) => {
|
|
397968
397968
|
importsList.push(generateRequire(varName, imp));
|
|
397969
397969
|
});
|
|
397970
|
-
return
|
|
397970
|
+
return ts8.factory.createNodeArray([
|
|
397971
397971
|
// add plugin imports
|
|
397972
397972
|
...importsList,
|
|
397973
|
-
|
|
397973
|
+
ts8.createSourceFile("", isFlatCompatNeeded ? DEFAULT_FLAT_CONFIG : "", ts8.ScriptTarget.Latest, false, ts8.ScriptKind.JS),
|
|
397974
397974
|
// creates:
|
|
397975
397975
|
// module.exports = [ ... ];
|
|
397976
|
-
|
|
397976
|
+
ts8.factory.createExpressionStatement(ts8.factory.createBinaryExpression(ts8.factory.createPropertyAccessExpression(ts8.factory.createIdentifier("module"), ts8.factory.createIdentifier("exports")), ts8.factory.createToken(ts8.SyntaxKind.EqualsToken), ts8.factory.createArrayLiteralExpression(exportElements, true)))
|
|
397977
397977
|
]);
|
|
397978
397978
|
}
|
|
397979
397979
|
exports2.createNodeList = createNodeList;
|
|
397980
397980
|
function generateSpreadElement(name) {
|
|
397981
|
-
return
|
|
397981
|
+
return ts8.factory.createSpreadElement(ts8.factory.createIdentifier(name));
|
|
397982
397982
|
}
|
|
397983
397983
|
exports2.generateSpreadElement = generateSpreadElement;
|
|
397984
397984
|
function generatePluginExtendsElement(plugins) {
|
|
397985
|
-
return
|
|
397985
|
+
return ts8.factory.createSpreadElement(ts8.factory.createCallExpression(ts8.factory.createPropertyAccessExpression(ts8.factory.createIdentifier("compat"), ts8.factory.createIdentifier("extends")), void 0, plugins.map((plugin) => ts8.factory.createStringLiteral(plugin))));
|
|
397986
397986
|
}
|
|
397987
397987
|
exports2.generatePluginExtendsElement = generatePluginExtendsElement;
|
|
397988
397988
|
function stringifyNodeList(nodes) {
|
|
397989
|
-
const printer2 =
|
|
397990
|
-
const resultFile =
|
|
397991
|
-
return printer2.printList(
|
|
397989
|
+
const printer2 = ts8.createPrinter({ newLine: ts8.NewLineKind.LineFeed });
|
|
397990
|
+
const resultFile = ts8.createSourceFile("", "", ts8.ScriptTarget.Latest, true, ts8.ScriptKind.JS);
|
|
397991
|
+
return printer2.printList(ts8.ListFormat.MultiLine, nodes, resultFile).replace(/const compat = new FlatCompat/, "\nconst compat = new FlatCompat").replace(/module\.exports/, "\nmodule.exports");
|
|
397992
397992
|
}
|
|
397993
397993
|
exports2.stringifyNodeList = stringifyNodeList;
|
|
397994
397994
|
function generateRequire(variableName, imp) {
|
|
397995
|
-
return
|
|
397996
|
-
|
|
397997
|
-
],
|
|
397995
|
+
return ts8.factory.createVariableStatement(void 0, ts8.factory.createVariableDeclarationList([
|
|
397996
|
+
ts8.factory.createVariableDeclaration(variableName, void 0, void 0, ts8.factory.createCallExpression(ts8.factory.createIdentifier("require"), void 0, [ts8.factory.createStringLiteral(imp)]))
|
|
397997
|
+
], ts8.NodeFlags.Const));
|
|
397998
397998
|
}
|
|
397999
397999
|
exports2.generateRequire = generateRequire;
|
|
398000
398000
|
function generateFlatOverride(override) {
|
|
@@ -398004,15 +398004,15 @@ const compat = new FlatCompat({
|
|
|
398004
398004
|
}
|
|
398005
398005
|
const { files, excludedFiles, rules, ...rest } = override;
|
|
398006
398006
|
const objectLiteralElements = [
|
|
398007
|
-
|
|
398007
|
+
ts8.factory.createSpreadAssignment(ts8.factory.createIdentifier("config"))
|
|
398008
398008
|
];
|
|
398009
398009
|
addTSObjectProperty(objectLiteralElements, "files", files);
|
|
398010
398010
|
addTSObjectProperty(objectLiteralElements, "excludedFiles", excludedFiles);
|
|
398011
398011
|
addTSObjectProperty(objectLiteralElements, "rules", rules);
|
|
398012
|
-
return
|
|
398013
|
-
|
|
398014
|
-
|
|
398015
|
-
], void 0,
|
|
398012
|
+
return ts8.factory.createSpreadElement(ts8.factory.createCallExpression(ts8.factory.createPropertyAccessExpression(ts8.factory.createCallExpression(ts8.factory.createPropertyAccessExpression(ts8.factory.createIdentifier("compat"), ts8.factory.createIdentifier("config")), void 0, [generateAst(rest)]), ts8.factory.createIdentifier("map")), void 0, [
|
|
398013
|
+
ts8.factory.createArrowFunction(void 0, void 0, [
|
|
398014
|
+
ts8.factory.createParameterDeclaration(void 0, void 0, "config")
|
|
398015
|
+
], void 0, ts8.factory.createToken(ts8.SyntaxKind.EqualsGreaterThanToken), ts8.factory.createParenthesizedExpression(ts8.factory.createObjectLiteralExpression(objectLiteralElements, true)))
|
|
398016
398016
|
]));
|
|
398017
398017
|
}
|
|
398018
398018
|
exports2.generateFlatOverride = generateFlatOverride;
|
|
@@ -398029,35 +398029,35 @@ const compat = new FlatCompat({
|
|
|
398029
398029
|
exports2.mapFilePaths = mapFilePaths;
|
|
398030
398030
|
function addTSObjectProperty(elements, key2, value) {
|
|
398031
398031
|
if (value) {
|
|
398032
|
-
elements.push(
|
|
398032
|
+
elements.push(ts8.factory.createPropertyAssignment(key2, generateAst(value)));
|
|
398033
398033
|
}
|
|
398034
398034
|
}
|
|
398035
398035
|
function generateAst(input) {
|
|
398036
398036
|
if (Array.isArray(input)) {
|
|
398037
|
-
return
|
|
398037
|
+
return ts8.factory.createArrayLiteralExpression(
|
|
398038
398038
|
input.map((item) => generateAst(item)),
|
|
398039
398039
|
input.length > 1
|
|
398040
398040
|
// multiline only if more than one item
|
|
398041
398041
|
);
|
|
398042
398042
|
}
|
|
398043
398043
|
if (input === null) {
|
|
398044
|
-
return
|
|
398044
|
+
return ts8.factory.createNull();
|
|
398045
398045
|
}
|
|
398046
398046
|
if (typeof input === "object") {
|
|
398047
|
-
return
|
|
398048
|
-
Object.entries(input).filter(([_4, value]) => value !== void 0).map(([key2, value]) =>
|
|
398047
|
+
return ts8.factory.createObjectLiteralExpression(
|
|
398048
|
+
Object.entries(input).filter(([_4, value]) => value !== void 0).map(([key2, value]) => ts8.factory.createPropertyAssignment(isValidKey(key2) ? key2 : ts8.factory.createStringLiteral(key2), generateAst(value))),
|
|
398049
398049
|
Object.keys(input).length > 1
|
|
398050
398050
|
// multiline only if more than one property
|
|
398051
398051
|
);
|
|
398052
398052
|
}
|
|
398053
398053
|
if (typeof input === "string") {
|
|
398054
|
-
return
|
|
398054
|
+
return ts8.factory.createStringLiteral(input);
|
|
398055
398055
|
}
|
|
398056
398056
|
if (typeof input === "number") {
|
|
398057
|
-
return
|
|
398057
|
+
return ts8.factory.createNumericLiteral(input);
|
|
398058
398058
|
}
|
|
398059
398059
|
if (typeof input === "boolean") {
|
|
398060
|
-
return input ?
|
|
398060
|
+
return input ? ts8.factory.createTrue() : ts8.factory.createFalse();
|
|
398061
398061
|
}
|
|
398062
398062
|
throw new Error(`Unknown type: ${typeof input} `);
|
|
398063
398063
|
}
|
|
@@ -400986,12 +400986,12 @@ var require_esbuild_decorators = __commonJS({
|
|
|
400986
400986
|
if (!forceTsc && (!parsedTsConfig || !parsedTsConfig.options || !parsedTsConfig.options.emitDecoratorMetadata)) {
|
|
400987
400987
|
return;
|
|
400988
400988
|
}
|
|
400989
|
-
const
|
|
400990
|
-
const hasDecorator = findDecorators(
|
|
400991
|
-
if (!
|
|
400989
|
+
const ts8 = yield readFile3(args.path, "utf8").catch((err) => printDiagnostics({ file: args.path, err }));
|
|
400990
|
+
const hasDecorator = findDecorators(ts8);
|
|
400991
|
+
if (!ts8 || !hasDecorator) {
|
|
400992
400992
|
return;
|
|
400993
400993
|
}
|
|
400994
|
-
const program = (0, typescript_1.transpileModule)(
|
|
400994
|
+
const program = (0, typescript_1.transpileModule)(ts8, {
|
|
400995
400995
|
compilerOptions: parsedTsConfig.options
|
|
400996
400996
|
});
|
|
400997
400997
|
return { contents: program.outputText };
|
|
@@ -486646,8 +486646,8 @@ ${options8.banner}
|
|
|
486646
486646
|
}
|
|
486647
486647
|
};
|
|
486648
486648
|
function getNormalizedTsConfig(context, workspaceRoot, outputPath, options8) {
|
|
486649
|
-
const config = import_typescript.
|
|
486650
|
-
const tsConfig = import_typescript.
|
|
486649
|
+
const config = (0, import_typescript.readConfigFile)(options8.tsConfig, import_typescript.sys.readFile).config;
|
|
486650
|
+
const tsConfig = (0, import_typescript.parseJsonConfigFileContent)(
|
|
486651
486651
|
{
|
|
486652
486652
|
...config,
|
|
486653
486653
|
compilerOptions: {
|
|
@@ -486658,19 +486658,18 @@ function getNormalizedTsConfig(context, workspaceRoot, outputPath, options8) {
|
|
|
486658
486658
|
outDir: outputPath,
|
|
486659
486659
|
rootDir: workspaceRoot,
|
|
486660
486660
|
baseUrl: workspaceRoot,
|
|
486661
|
-
|
|
486661
|
+
moduleResolution: "node",
|
|
486662
486662
|
noEmit: false,
|
|
486663
486663
|
esModuleInterop: true,
|
|
486664
486664
|
downlevelIteration: true,
|
|
486665
486665
|
noUnusedLocals: false,
|
|
486666
|
-
forceConsistentCasingInFileNames: true,
|
|
486667
486666
|
emitDeclarationOnly: true,
|
|
486668
486667
|
declaration: true,
|
|
486669
486668
|
declarationMap: true,
|
|
486670
486669
|
declarationDir: (0, import_devkit3.joinPathFragments)(workspaceRoot, "tmp", ".tsup", "declaration")
|
|
486671
486670
|
}
|
|
486672
486671
|
},
|
|
486673
|
-
import_typescript.
|
|
486672
|
+
import_typescript.sys,
|
|
486674
486673
|
(0, import_node_path5.dirname)(options8.tsConfig)
|
|
486675
486674
|
);
|
|
486676
486675
|
tsConfig.options.pathsBasePath = workspaceRoot;
|