@storm-software/workspace-tools 1.60.13 → 1.60.15
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 +24 -0
- package/index.js +202 -202
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +202 -202
- package/src/executors/tsup-browser/executor.js +202 -202
- package/src/executors/tsup-neutral/executor.js +202 -202
- package/src/executors/tsup-node/executor.js +202 -202
- package/src/utils/index.js +115 -115
package/src/utils/index.js
CHANGED
|
@@ -3836,7 +3836,7 @@ var require_source_map_support = __commonJS({
|
|
|
3836
3836
|
var require_typescript = __commonJS({
|
|
3837
3837
|
"node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/typescript.js"(exports2, module2) {
|
|
3838
3838
|
"use strict";
|
|
3839
|
-
var
|
|
3839
|
+
var ts8 = (() => {
|
|
3840
3840
|
var __defProp4 = Object.defineProperty;
|
|
3841
3841
|
var __getOwnPropNames3 = Object.getOwnPropertyNames;
|
|
3842
3842
|
var __esm2 = (fn6, res) => function __init() {
|
|
@@ -6967,7 +6967,7 @@ ${lanes.join("\n")}
|
|
|
6967
6967
|
function isEnabled() {
|
|
6968
6968
|
return enabled;
|
|
6969
6969
|
}
|
|
6970
|
-
function enable(system =
|
|
6970
|
+
function enable(system = sys2) {
|
|
6971
6971
|
var _a3;
|
|
6972
6972
|
if (!enabled) {
|
|
6973
6973
|
enabled = true;
|
|
@@ -10184,21 +10184,21 @@ ${lanes.join("\n")}
|
|
|
10184
10184
|
}
|
|
10185
10185
|
}
|
|
10186
10186
|
}
|
|
10187
|
-
function patchWriteFileEnsuringDirectory2(
|
|
10188
|
-
const originalWriteFile =
|
|
10189
|
-
|
|
10187
|
+
function patchWriteFileEnsuringDirectory2(sys22) {
|
|
10188
|
+
const originalWriteFile = sys22.writeFile;
|
|
10189
|
+
sys22.writeFile = (path13, data, writeBom) => writeFileEnsuringDirectories(
|
|
10190
10190
|
path13,
|
|
10191
10191
|
data,
|
|
10192
10192
|
!!writeBom,
|
|
10193
|
-
(path22, data2, writeByteOrderMark) => originalWriteFile.call(
|
|
10194
|
-
(path22) =>
|
|
10195
|
-
(path22) =>
|
|
10193
|
+
(path22, data2, writeByteOrderMark) => originalWriteFile.call(sys22, path22, data2, writeByteOrderMark),
|
|
10194
|
+
(path22) => sys22.createDirectory(path22),
|
|
10195
|
+
(path22) => sys22.directoryExists(path22)
|
|
10196
10196
|
);
|
|
10197
10197
|
}
|
|
10198
10198
|
function setSys2(s) {
|
|
10199
|
-
|
|
10199
|
+
sys2 = s;
|
|
10200
10200
|
}
|
|
10201
|
-
var FileWatcherEventKind2, PollingInterval2, missingFileModifiedTime2, defaultChunkLevels, pollingChunkSize, unchangedPollThresholds2, ignoredPaths2, curSysLog, FileSystemEntryKind2,
|
|
10201
|
+
var FileWatcherEventKind2, PollingInterval2, missingFileModifiedTime2, defaultChunkLevels, pollingChunkSize, unchangedPollThresholds2, ignoredPaths2, curSysLog, FileSystemEntryKind2, sys2;
|
|
10202
10202
|
var init_sys = __esm2({
|
|
10203
10203
|
"src/compiler/sys.ts"() {
|
|
10204
10204
|
"use strict";
|
|
@@ -10226,7 +10226,7 @@ ${lanes.join("\n")}
|
|
|
10226
10226
|
FileSystemEntryKind22[FileSystemEntryKind22["Directory"] = 1] = "Directory";
|
|
10227
10227
|
return FileSystemEntryKind22;
|
|
10228
10228
|
})(FileSystemEntryKind2 || {});
|
|
10229
|
-
|
|
10229
|
+
sys2 = (() => {
|
|
10230
10230
|
const byteOrderMarkIndicator = "\uFEFF";
|
|
10231
10231
|
function getNodeSystem() {
|
|
10232
10232
|
const nativePattern = /^native |^\([^)]+\)$|^(internal[\\/]|[a-zA-Z0-9_\s]+(\.js)?$)/;
|
|
@@ -10669,23 +10669,23 @@ ${lanes.join("\n")}
|
|
|
10669
10669
|
return hash.digest("hex");
|
|
10670
10670
|
}
|
|
10671
10671
|
}
|
|
10672
|
-
let
|
|
10672
|
+
let sys22;
|
|
10673
10673
|
if (isNodeLikeSystem()) {
|
|
10674
|
-
|
|
10674
|
+
sys22 = getNodeSystem();
|
|
10675
10675
|
}
|
|
10676
|
-
if (
|
|
10677
|
-
patchWriteFileEnsuringDirectory2(
|
|
10676
|
+
if (sys22) {
|
|
10677
|
+
patchWriteFileEnsuringDirectory2(sys22);
|
|
10678
10678
|
}
|
|
10679
|
-
return
|
|
10679
|
+
return sys22;
|
|
10680
10680
|
})();
|
|
10681
|
-
if (
|
|
10682
|
-
setCustomPollingValues(
|
|
10681
|
+
if (sys2 && sys2.getEnvironmentVariable) {
|
|
10682
|
+
setCustomPollingValues(sys2);
|
|
10683
10683
|
Debug.setAssertionLevel(
|
|
10684
|
-
/^development$/i.test(
|
|
10684
|
+
/^development$/i.test(sys2.getEnvironmentVariable("NODE_ENV")) ? 1 : 0
|
|
10685
10685
|
/* None */
|
|
10686
10686
|
);
|
|
10687
10687
|
}
|
|
10688
|
-
if (
|
|
10688
|
+
if (sys2 && sys2.debugMode) {
|
|
10689
10689
|
Debug.isDebugging = true;
|
|
10690
10690
|
}
|
|
10691
10691
|
}
|
|
@@ -15658,7 +15658,7 @@ ${lanes.join("\n")}
|
|
|
15658
15658
|
function getNodeFlags(node) {
|
|
15659
15659
|
return node.flags;
|
|
15660
15660
|
}
|
|
15661
|
-
function validateLocaleAndSetLanguage(locale,
|
|
15661
|
+
function validateLocaleAndSetLanguage(locale, sys22, errors) {
|
|
15662
15662
|
const lowerCaseLocale = locale.toLowerCase();
|
|
15663
15663
|
const matchResult = /^([a-z]+)([_-]([a-z]+))?$/.exec(lowerCaseLocale);
|
|
15664
15664
|
if (!matchResult) {
|
|
@@ -15679,19 +15679,19 @@ ${lanes.join("\n")}
|
|
|
15679
15679
|
}
|
|
15680
15680
|
setUILocale(locale);
|
|
15681
15681
|
function trySetLanguageAndTerritory(language2, territory2, errors2) {
|
|
15682
|
-
const compilerFilePath = normalizePath(
|
|
15682
|
+
const compilerFilePath = normalizePath(sys22.getExecutingFilePath());
|
|
15683
15683
|
const containingDirectoryPath = getDirectoryPath(compilerFilePath);
|
|
15684
15684
|
let filePath = combinePaths(containingDirectoryPath, language2);
|
|
15685
15685
|
if (territory2) {
|
|
15686
15686
|
filePath = filePath + "-" + territory2;
|
|
15687
15687
|
}
|
|
15688
|
-
filePath =
|
|
15689
|
-
if (!
|
|
15688
|
+
filePath = sys22.resolvePath(combinePaths(filePath, "diagnosticMessages.generated.json"));
|
|
15689
|
+
if (!sys22.fileExists(filePath)) {
|
|
15690
15690
|
return false;
|
|
15691
15691
|
}
|
|
15692
15692
|
let fileContents = "";
|
|
15693
15693
|
try {
|
|
15694
|
-
fileContents =
|
|
15694
|
+
fileContents = sys22.readFile(filePath);
|
|
15695
15695
|
} catch (e3) {
|
|
15696
15696
|
if (errors2) {
|
|
15697
15697
|
errors2.push(createCompilerDiagnostic(Diagnostics.Unable_to_open_file_0, filePath));
|
|
@@ -42953,7 +42953,7 @@ ${lanes.join("\n")}
|
|
|
42953
42953
|
}
|
|
42954
42954
|
}
|
|
42955
42955
|
function parseResponseFile(fileName) {
|
|
42956
|
-
const text = tryReadFile2(fileName, readFile2 || ((fileName2) =>
|
|
42956
|
+
const text = tryReadFile2(fileName, readFile2 || ((fileName2) => sys2.readFile(fileName2)));
|
|
42957
42957
|
if (!isString(text)) {
|
|
42958
42958
|
errors.push(text);
|
|
42959
42959
|
return;
|
|
@@ -43123,7 +43123,7 @@ ${lanes.join("\n")}
|
|
|
43123
43123
|
watchOptionsToExtend
|
|
43124
43124
|
);
|
|
43125
43125
|
}
|
|
43126
|
-
function
|
|
43126
|
+
function readConfigFile3(fileName, readFile2) {
|
|
43127
43127
|
const textOrDiagnostic = tryReadFile2(fileName, readFile2);
|
|
43128
43128
|
return isString(textOrDiagnostic) ? parseConfigFileTextToJson2(fileName, textOrDiagnostic) : { config: {}, error: textOrDiagnostic };
|
|
43129
43129
|
}
|
|
@@ -43629,7 +43629,7 @@ ${lanes.join("\n")}
|
|
|
43629
43629
|
}
|
|
43630
43630
|
return value;
|
|
43631
43631
|
}
|
|
43632
|
-
function
|
|
43632
|
+
function parseJsonConfigFileContent3(json2, host, basePath, existingOptions, configFileName, resolutionStack, extraFileExtensions, extendedConfigCache, existingWatchOptions) {
|
|
43633
43633
|
return parseJsonConfigFileContentWorker(
|
|
43634
43634
|
json2,
|
|
43635
43635
|
/*sourceFile*/
|
|
@@ -125259,7 +125259,7 @@ ${lanes.join("\n")}
|
|
|
125259
125259
|
function getSourceMappingURL(mapOptions, sourceMapGenerator, filePath, sourceMapFilePath, sourceFile) {
|
|
125260
125260
|
if (mapOptions.inlineSourceMap) {
|
|
125261
125261
|
const sourceMapText = sourceMapGenerator.toString();
|
|
125262
|
-
const base64SourceMapText = base64encode(
|
|
125262
|
+
const base64SourceMapText = base64encode(sys2, sourceMapText);
|
|
125263
125263
|
return `data:application/json;base64,${base64SourceMapText}`;
|
|
125264
125264
|
}
|
|
125265
125265
|
const sourceMapFile = getBaseFileName(normalizeSlashes(Debug.checkDefined(sourceMapFilePath)));
|
|
@@ -131059,7 +131059,7 @@ ${lanes.join("\n")}
|
|
|
131059
131059
|
}
|
|
131060
131060
|
};
|
|
131061
131061
|
}
|
|
131062
|
-
function createCompilerHostWorker2(options8, setParentNodes, system =
|
|
131062
|
+
function createCompilerHostWorker2(options8, setParentNodes, system = sys2) {
|
|
131063
131063
|
const existingDirectories = /* @__PURE__ */ new Map();
|
|
131064
131064
|
const getCanonicalFileName = createGetCanonicalFileName(system.useCaseSensitiveFileNames);
|
|
131065
131065
|
function directoryExists(directoryPath) {
|
|
@@ -137963,7 +137963,7 @@ ${lanes.join("\n")}
|
|
|
137963
137963
|
}
|
|
137964
137964
|
});
|
|
137965
137965
|
function createDiagnosticReporter2(system, pretty) {
|
|
137966
|
-
const host = system ===
|
|
137966
|
+
const host = system === sys2 && sysFormatDiagnosticsHost ? sysFormatDiagnosticsHost : {
|
|
137967
137967
|
getCurrentDirectory: () => system.getCurrentDirectory(),
|
|
137968
137968
|
getNewLine: () => system.newLine,
|
|
137969
137969
|
getCanonicalFileName: createGetCanonicalFileName(system.useCaseSensitiveFileNames)
|
|
@@ -138407,7 +138407,7 @@ ${lanes.join("\n")}
|
|
|
138407
138407
|
}
|
|
138408
138408
|
return 0;
|
|
138409
138409
|
}
|
|
138410
|
-
function createWatchHost2(system =
|
|
138410
|
+
function createWatchHost2(system = sys2, reportWatchStatus2) {
|
|
138411
138411
|
const onWatchStatusChange = reportWatchStatus2 || createWatchStatusReporter2(system);
|
|
138412
138412
|
return {
|
|
138413
138413
|
onWatchStatusChange,
|
|
@@ -138524,7 +138524,7 @@ ${lanes.join("\n")}
|
|
|
138524
138524
|
now: maybeBind(system, system.now)
|
|
138525
138525
|
};
|
|
138526
138526
|
}
|
|
138527
|
-
function createWatchCompilerHost(system =
|
|
138527
|
+
function createWatchCompilerHost(system = sys2, createProgram22, reportDiagnostic, reportWatchStatus2) {
|
|
138528
138528
|
const write = (s) => system.write(s + system.newLine);
|
|
138529
138529
|
const result = createProgramHost2(system, createProgram22);
|
|
138530
138530
|
copyProperties(result, createWatchHost2(system, reportWatchStatus2));
|
|
@@ -138589,7 +138589,7 @@ ${lanes.join("\n")}
|
|
|
138589
138589
|
return host;
|
|
138590
138590
|
}
|
|
138591
138591
|
function performIncrementalCompilation2(input) {
|
|
138592
|
-
const system = input.system ||
|
|
138592
|
+
const system = input.system || sys2;
|
|
138593
138593
|
const host = input.host || (input.host = createIncrementalCompilerHost2(input.options, system));
|
|
138594
138594
|
const builderProgram = createIncrementalProgram2(input);
|
|
138595
138595
|
const exitStatus = emitFilesAndReportErrorsAndGetExitStatus2(
|
|
@@ -138607,10 +138607,10 @@ ${lanes.join("\n")}
|
|
|
138607
138607
|
"src/compiler/watch.ts"() {
|
|
138608
138608
|
"use strict";
|
|
138609
138609
|
init_ts2();
|
|
138610
|
-
sysFormatDiagnosticsHost =
|
|
138611
|
-
getCurrentDirectory: () =>
|
|
138612
|
-
getNewLine: () =>
|
|
138613
|
-
getCanonicalFileName: createGetCanonicalFileName(
|
|
138610
|
+
sysFormatDiagnosticsHost = sys2 ? {
|
|
138611
|
+
getCurrentDirectory: () => sys2.getCurrentDirectory(),
|
|
138612
|
+
getNewLine: () => sys2.newLine,
|
|
138613
|
+
getCanonicalFileName: createGetCanonicalFileName(sys2.useCaseSensitiveFileNames)
|
|
138614
138614
|
} : void 0;
|
|
138615
138615
|
screenStartingMessageCodes2 = [
|
|
138616
138616
|
Diagnostics.Starting_compilation_in_watch_mode.code,
|
|
@@ -138660,7 +138660,7 @@ ${lanes.join("\n")}
|
|
|
138660
138660
|
return void 0;
|
|
138661
138661
|
return createBuilderProgramUsingProgramBuildInfo2(buildInfo, buildInfoPath, host);
|
|
138662
138662
|
}
|
|
138663
|
-
function createIncrementalCompilerHost2(options8, system =
|
|
138663
|
+
function createIncrementalCompilerHost2(options8, system = sys2) {
|
|
138664
138664
|
const host = createCompilerHostWorker2(
|
|
138665
138665
|
options8,
|
|
138666
138666
|
/*setParentNodes*/
|
|
@@ -139466,12 +139466,12 @@ ${lanes.join("\n")}
|
|
|
139466
139466
|
host.now = maybeBind(system, system.now);
|
|
139467
139467
|
return host;
|
|
139468
139468
|
}
|
|
139469
|
-
function createSolutionBuilderHost2(system =
|
|
139469
|
+
function createSolutionBuilderHost2(system = sys2, createProgram22, reportDiagnostic, reportSolutionBuilderStatus, reportErrorSummary2) {
|
|
139470
139470
|
const host = createSolutionBuilderHostBase(system, createProgram22, reportDiagnostic, reportSolutionBuilderStatus);
|
|
139471
139471
|
host.reportErrorSummary = reportErrorSummary2;
|
|
139472
139472
|
return host;
|
|
139473
139473
|
}
|
|
139474
|
-
function createSolutionBuilderWithWatchHost2(system =
|
|
139474
|
+
function createSolutionBuilderWithWatchHost2(system = sys2, createProgram22, reportDiagnostic, reportSolutionBuilderStatus, reportWatchStatus2) {
|
|
139475
139475
|
const host = createSolutionBuilderHostBase(system, createProgram22, reportDiagnostic, reportSolutionBuilderStatus);
|
|
139476
139476
|
const watchHost = createWatchHost2(system, reportWatchStatus2);
|
|
139477
139477
|
copyProperties(host, watchHost);
|
|
@@ -141600,11 +141600,11 @@ ${lanes.join("\n")}
|
|
|
141600
141600
|
}
|
|
141601
141601
|
});
|
|
141602
141602
|
function hasArgument2(argumentName) {
|
|
141603
|
-
return
|
|
141603
|
+
return sys2.args.includes(argumentName);
|
|
141604
141604
|
}
|
|
141605
141605
|
function findArgument2(argumentName) {
|
|
141606
|
-
const index =
|
|
141607
|
-
return index >= 0 && index <
|
|
141606
|
+
const index = sys2.args.indexOf(argumentName);
|
|
141607
|
+
return index >= 0 && index < sys2.args.length - 1 ? sys2.args[index + 1] : void 0;
|
|
141608
141608
|
}
|
|
141609
141609
|
function nowString2() {
|
|
141610
141610
|
const d4 = /* @__PURE__ */ new Date();
|
|
@@ -141661,12 +141661,12 @@ ${lanes.join("\n")}
|
|
|
141661
141661
|
return nodeCoreModules.has(moduleName) ? "node" : moduleName;
|
|
141662
141662
|
}
|
|
141663
141663
|
function loadSafeList(host, safeListPath) {
|
|
141664
|
-
const result =
|
|
141664
|
+
const result = readConfigFile3(safeListPath, (path13) => host.readFile(path13));
|
|
141665
141665
|
return new Map(Object.entries(result.config));
|
|
141666
141666
|
}
|
|
141667
141667
|
function loadTypesMap(host, typesMapPath) {
|
|
141668
141668
|
var _a3;
|
|
141669
|
-
const result =
|
|
141669
|
+
const result = readConfigFile3(typesMapPath, (path13) => host.readFile(path13));
|
|
141670
141670
|
if ((_a3 = result.config) == null ? void 0 : _a3.simpleMap) {
|
|
141671
141671
|
return new Map(Object.entries(result.config.simpleMap));
|
|
141672
141672
|
}
|
|
@@ -141746,7 +141746,7 @@ ${lanes.join("\n")}
|
|
|
141746
141746
|
let manifestTypingNames;
|
|
141747
141747
|
if (host.fileExists(manifestPath)) {
|
|
141748
141748
|
filesToWatch2.push(manifestPath);
|
|
141749
|
-
manifest =
|
|
141749
|
+
manifest = readConfigFile3(manifestPath, (path13) => host.readFile(path13)).config;
|
|
141750
141750
|
manifestTypingNames = flatMap([manifest.dependencies, manifest.devDependencies, manifest.optionalDependencies, manifest.peerDependencies], getOwnKeys);
|
|
141751
141751
|
addInferredTypings(manifestTypingNames, `Typing names in '${manifestPath}' dependencies`);
|
|
141752
141752
|
}
|
|
@@ -141781,7 +141781,7 @@ ${lanes.join("\n")}
|
|
|
141781
141781
|
log(`Searching for typing names in ${packagesFolderPath}; all files: ${JSON.stringify(dependencyManifestNames)}`);
|
|
141782
141782
|
for (const manifestPath2 of dependencyManifestNames) {
|
|
141783
141783
|
const normalizedFileName = normalizePath(manifestPath2);
|
|
141784
|
-
const result2 =
|
|
141784
|
+
const result2 = readConfigFile3(normalizedFileName, (path13) => host.readFile(path13));
|
|
141785
141785
|
const manifest2 = result2.config;
|
|
141786
141786
|
if (!manifest2.name) {
|
|
141787
141787
|
continue;
|
|
@@ -148396,7 +148396,7 @@ ${lanes.join("\n")}
|
|
|
148396
148396
|
if (match) {
|
|
148397
148397
|
if (match[1]) {
|
|
148398
148398
|
const base64Object = match[1];
|
|
148399
|
-
return convertDocumentToSourceMapper(host, base64decode(
|
|
148399
|
+
return convertDocumentToSourceMapper(host, base64decode(sys2, base64Object), generatedFileName);
|
|
148400
148400
|
}
|
|
148401
148401
|
mapFileName = void 0;
|
|
148402
148402
|
}
|
|
@@ -157304,8 +157304,8 @@ ${newComment.split("\n").map((c4) => ` * ${c4}`).join("\n")}
|
|
|
157304
157304
|
return node && node.parent && node.parent.kind === 212 && node.parent.argumentExpression === node;
|
|
157305
157305
|
}
|
|
157306
157306
|
function getDefaultLibFilePath(options8) {
|
|
157307
|
-
if (
|
|
157308
|
-
return combinePaths(getDirectoryPath(normalizePath(
|
|
157307
|
+
if (sys2) {
|
|
157308
|
+
return combinePaths(getDirectoryPath(normalizePath(sys2.getExecutingFilePath())), getDefaultLibFileName(options8));
|
|
157309
157309
|
}
|
|
157310
157310
|
throw new Error("getDefaultLibFilePath is only supported when consumed as a node module. ");
|
|
157311
157311
|
}
|
|
@@ -201456,7 +201456,7 @@ ${e3.message}`;
|
|
|
201456
201456
|
parseIsolatedEntityName: () => parseIsolatedEntityName,
|
|
201457
201457
|
parseIsolatedJSDocComment: () => parseIsolatedJSDocComment,
|
|
201458
201458
|
parseJSDocTypeExpressionForTests: () => parseJSDocTypeExpressionForTests,
|
|
201459
|
-
parseJsonConfigFileContent: () =>
|
|
201459
|
+
parseJsonConfigFileContent: () => parseJsonConfigFileContent3,
|
|
201460
201460
|
parseJsonSourceFileConfigFileContent: () => parseJsonSourceFileConfigFileContent2,
|
|
201461
201461
|
parseJsonText: () => parseJsonText,
|
|
201462
201462
|
parseListTypeOption: () => parseListTypeOption2,
|
|
@@ -201509,7 +201509,7 @@ ${e3.message}`;
|
|
|
201509
201509
|
rangeStartIsOnSameLineAsRangeEnd: () => rangeStartIsOnSameLineAsRangeEnd,
|
|
201510
201510
|
rangeStartPositionsAreOnSameLine: () => rangeStartPositionsAreOnSameLine,
|
|
201511
201511
|
readBuilderProgram: () => readBuilderProgram2,
|
|
201512
|
-
readConfigFile: () =>
|
|
201512
|
+
readConfigFile: () => readConfigFile3,
|
|
201513
201513
|
readHelper: () => readHelper2,
|
|
201514
201514
|
readJson: () => readJson2,
|
|
201515
201515
|
readJsonConfigFile: () => readJsonConfigFile2,
|
|
@@ -201664,7 +201664,7 @@ ${e3.message}`;
|
|
|
201664
201664
|
symbolToDisplayParts: () => symbolToDisplayParts2,
|
|
201665
201665
|
syntaxMayBeASICandidate: () => syntaxMayBeASICandidate2,
|
|
201666
201666
|
syntaxRequiresTrailingSemicolonOrASI: () => syntaxRequiresTrailingSemicolonOrASI2,
|
|
201667
|
-
sys: () =>
|
|
201667
|
+
sys: () => sys2,
|
|
201668
201668
|
sysLog: () => sysLog2,
|
|
201669
201669
|
tagNamesAreEquivalent: () => tagNamesAreEquivalent,
|
|
201670
201670
|
takeWhile: () => takeWhile,
|
|
@@ -203860,7 +203860,7 @@ ${e3.message}`;
|
|
|
203860
203860
|
parseIsolatedEntityName: () => parseIsolatedEntityName,
|
|
203861
203861
|
parseIsolatedJSDocComment: () => parseIsolatedJSDocComment,
|
|
203862
203862
|
parseJSDocTypeExpressionForTests: () => parseJSDocTypeExpressionForTests,
|
|
203863
|
-
parseJsonConfigFileContent: () =>
|
|
203863
|
+
parseJsonConfigFileContent: () => parseJsonConfigFileContent3,
|
|
203864
203864
|
parseJsonSourceFileConfigFileContent: () => parseJsonSourceFileConfigFileContent2,
|
|
203865
203865
|
parseJsonText: () => parseJsonText,
|
|
203866
203866
|
parseListTypeOption: () => parseListTypeOption2,
|
|
@@ -203913,7 +203913,7 @@ ${e3.message}`;
|
|
|
203913
203913
|
rangeStartIsOnSameLineAsRangeEnd: () => rangeStartIsOnSameLineAsRangeEnd,
|
|
203914
203914
|
rangeStartPositionsAreOnSameLine: () => rangeStartPositionsAreOnSameLine,
|
|
203915
203915
|
readBuilderProgram: () => readBuilderProgram2,
|
|
203916
|
-
readConfigFile: () =>
|
|
203916
|
+
readConfigFile: () => readConfigFile3,
|
|
203917
203917
|
readHelper: () => readHelper2,
|
|
203918
203918
|
readJson: () => readJson2,
|
|
203919
203919
|
readJsonConfigFile: () => readJsonConfigFile2,
|
|
@@ -204068,7 +204068,7 @@ ${e3.message}`;
|
|
|
204068
204068
|
symbolToDisplayParts: () => symbolToDisplayParts2,
|
|
204069
204069
|
syntaxMayBeASICandidate: () => syntaxMayBeASICandidate2,
|
|
204070
204070
|
syntaxRequiresTrailingSemicolonOrASI: () => syntaxRequiresTrailingSemicolonOrASI2,
|
|
204071
|
-
sys: () =>
|
|
204071
|
+
sys: () => sys2,
|
|
204072
204072
|
sysLog: () => sysLog2,
|
|
204073
204073
|
tagNamesAreEquivalent: () => tagNamesAreEquivalent,
|
|
204074
204074
|
takeWhile: () => takeWhile,
|
|
@@ -204251,7 +204251,7 @@ ${e3.message}`;
|
|
|
204251
204251
|
return require_typescript3();
|
|
204252
204252
|
})();
|
|
204253
204253
|
if (typeof module2 !== "undefined" && module2.exports) {
|
|
204254
|
-
module2.exports =
|
|
204254
|
+
module2.exports = ts8;
|
|
204255
204255
|
}
|
|
204256
204256
|
}
|
|
204257
204257
|
});
|
|
@@ -227359,12 +227359,12 @@ var require_esbuild_decorators = __commonJS({
|
|
|
227359
227359
|
if (!forceTsc && (!parsedTsConfig || !parsedTsConfig.options || !parsedTsConfig.options.emitDecoratorMetadata)) {
|
|
227360
227360
|
return;
|
|
227361
227361
|
}
|
|
227362
|
-
const
|
|
227363
|
-
const hasDecorator = findDecorators(
|
|
227364
|
-
if (!
|
|
227362
|
+
const ts8 = yield readFile2(args.path, "utf8").catch((err) => printDiagnostics({ file: args.path, err }));
|
|
227363
|
+
const hasDecorator = findDecorators(ts8);
|
|
227364
|
+
if (!ts8 || !hasDecorator) {
|
|
227365
227365
|
return;
|
|
227366
227366
|
}
|
|
227367
|
-
const program = (0, typescript_1.transpileModule)(
|
|
227367
|
+
const program = (0, typescript_1.transpileModule)(ts8, {
|
|
227368
227368
|
compilerOptions: parsedTsConfig.options
|
|
227369
227369
|
});
|
|
227370
227370
|
return { contents: program.outputText };
|
|
@@ -234303,11 +234303,11 @@ var init_babel = __esm({
|
|
|
234303
234303
|
function es7(a2, t13) {
|
|
234304
234304
|
return Zt6(a2, t13) || Ei6.has(a2);
|
|
234305
234305
|
}
|
|
234306
|
-
function
|
|
234306
|
+
function ts8(a2) {
|
|
234307
234307
|
return Ii6.has(a2);
|
|
234308
234308
|
}
|
|
234309
234309
|
function ss7(a2, t13) {
|
|
234310
|
-
return es7(a2, t13) ||
|
|
234310
|
+
return es7(a2, t13) || ts8(a2);
|
|
234311
234311
|
}
|
|
234312
234312
|
function Ni7(a2) {
|
|
234313
234313
|
return Ci6.has(a2);
|
|
@@ -237360,7 +237360,7 @@ var init_babel = __esm({
|
|
|
237360
237360
|
y7 && this.checkLVal(y7, { in: d4, binding: s, checkClashes: i3, strictModeChanged: r4, hasParenthesizedAncestor: f7 });
|
|
237361
237361
|
}
|
|
237362
237362
|
checkIdentifier(t13, e3, s = false) {
|
|
237363
|
-
this.state.strict && (s ? ss7(t13.name, this.inModule) :
|
|
237363
|
+
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);
|
|
237364
237364
|
}
|
|
237365
237365
|
declareNameFromIdentifier(t13, e3) {
|
|
237366
237366
|
this.scope.declareName(t13.name, e3, t13.loc.start);
|
|
@@ -248266,7 +248266,7 @@ var init_flow = __esm({
|
|
|
248266
248266
|
return [0, e4, Fx(x11[2], r4)];
|
|
248267
248267
|
}
|
|
248268
248268
|
fW(0);
|
|
248269
|
-
var UT0 = GY(1),
|
|
248269
|
+
var UT0 = GY(1), ts8 = GY(2);
|
|
248270
248270
|
function BT0(x11) {
|
|
248271
248271
|
for (var r4 = cW2(0); ; ) {
|
|
248272
248272
|
if (!r4)
|
|
@@ -248286,7 +248286,7 @@ var init_flow = __esm({
|
|
|
248286
248286
|
return xO(x11, r4, 0, Xx(r4));
|
|
248287
248287
|
}
|
|
248288
248288
|
function fX(x11) {
|
|
248289
|
-
return jl4(
|
|
248289
|
+
return jl4(ts8, x11), bY(ts8, 10), es7(ts8);
|
|
248290
248290
|
}
|
|
248291
248291
|
var cO = [0, BT0];
|
|
248292
248292
|
function sO(x11) {
|
|
@@ -251179,7 +251179,7 @@ var init_flow = __esm({
|
|
|
251179
251179
|
}, t14, e4);
|
|
251180
251180
|
}
|
|
251181
251181
|
function SO(x11) {
|
|
251182
|
-
return AX(
|
|
251182
|
+
return AX(ts8, x11);
|
|
251183
251183
|
}
|
|
251184
251184
|
function Tr7(x11) {
|
|
251185
251185
|
var r4 = x11[1];
|
|
@@ -251315,19 +251315,19 @@ var init_flow = __esm({
|
|
|
251315
251315
|
}
|
|
251316
251316
|
try {
|
|
251317
251317
|
var t14 = ay(x11);
|
|
251318
|
-
l(SO(vF), t14), AO(
|
|
251318
|
+
l(SO(vF), t14), AO(ts8, e4);
|
|
251319
251319
|
var u = rW(0);
|
|
251320
251320
|
if (u < 0) {
|
|
251321
251321
|
var i4 = ny(u);
|
|
251322
251322
|
fX(Z12(FT0, i4)[1 + i4]);
|
|
251323
251323
|
}
|
|
251324
|
-
var f11 = es7(
|
|
251324
|
+
var f11 = es7(ts8), o4 = f11;
|
|
251325
251325
|
} catch (A11) {
|
|
251326
251326
|
var a2 = I12(A11), d4 = ay(x11);
|
|
251327
|
-
l(SO(cF), d4), AO(
|
|
251327
|
+
l(SO(cF), d4), AO(ts8, e4);
|
|
251328
251328
|
var k11 = ay(a2);
|
|
251329
|
-
l(SO(sF), k11), AO(
|
|
251330
|
-
var o4 = es7(
|
|
251329
|
+
l(SO(sF), k11), AO(ts8, KY(0));
|
|
251330
|
+
var o4 = es7(ts8);
|
|
251331
251331
|
}
|
|
251332
251332
|
var T4 = o4;
|
|
251333
251333
|
} catch (A11) {
|
|
@@ -251660,7 +251660,7 @@ var init_flow = __esm({
|
|
|
251660
251660
|
function ZX(x11) {
|
|
251661
251661
|
return Fr5(eS0);
|
|
251662
251662
|
}
|
|
251663
|
-
var tS0 = ZX(0), nS0 = KX(UT0), uS0 = KX(
|
|
251663
|
+
var tS0 = ZX(0), nS0 = KX(UT0), uS0 = KX(ts8);
|
|
251664
251664
|
LO(tS0);
|
|
251665
251665
|
function WX(x11, r4) {
|
|
251666
251666
|
var e4 = Fr5(16), t14 = LO(e4);
|
|
@@ -297651,7 +297651,7 @@ ${X7.join(`
|
|
|
297651
297651
|
}
|
|
297652
297652
|
function N42(e5, t13) {
|
|
297653
297653
|
let n = e5.name.escapedText;
|
|
297654
|
-
return c_(e5.parent, t13).filter((a5) =>
|
|
297654
|
+
return c_(e5.parent, t13).filter((a5) => ts8(a5) && a5.typeParameters.some((_5) => _5.name.escapedText === n));
|
|
297655
297655
|
}
|
|
297656
297656
|
function O42(e5) {
|
|
297657
297657
|
return N42(e5, false);
|
|
@@ -297714,7 +297714,7 @@ ${X7.join(`
|
|
|
297714
297714
|
return nn7(e5, Vb);
|
|
297715
297715
|
}
|
|
297716
297716
|
function JC(e5) {
|
|
297717
|
-
return nn7(e5,
|
|
297717
|
+
return nn7(e5, ts8);
|
|
297718
297718
|
}
|
|
297719
297719
|
function Mg(e5) {
|
|
297720
297720
|
return nn7(e5, Hb);
|
|
@@ -297781,12 +297781,12 @@ ${X7.join(`
|
|
|
297781
297781
|
if (zb(e5.parent)) {
|
|
297782
297782
|
let t13 = E23(e5.parent);
|
|
297783
297783
|
if (t13 && eo3(t13.tags))
|
|
297784
|
-
return zo2(t13.tags, (n) =>
|
|
297784
|
+
return zo2(t13.tags, (n) => ts8(n) ? n.typeParameters : void 0);
|
|
297785
297785
|
}
|
|
297786
297786
|
return Je9;
|
|
297787
297787
|
}
|
|
297788
297788
|
if (Xl4(e5))
|
|
297789
|
-
return I7.assert(e5.parent.kind === 327), zo2(e5.parent.tags, (t13) =>
|
|
297789
|
+
return I7.assert(e5.parent.kind === 327), zo2(e5.parent.tags, (t13) => ts8(t13) ? t13.typeParameters : void 0);
|
|
297790
297790
|
if (e5.typeParameters || J82(e5) && e5.typeParameters)
|
|
297791
297791
|
return e5.typeParameters;
|
|
297792
297792
|
if (Vt5(e5)) {
|
|
@@ -297800,7 +297800,7 @@ ${X7.join(`
|
|
|
297800
297800
|
return Je9;
|
|
297801
297801
|
}
|
|
297802
297802
|
function qC(e5) {
|
|
297803
|
-
return e5.constraint ? e5.constraint :
|
|
297803
|
+
return e5.constraint ? e5.constraint : ts8(e5.parent) && e5 === e5.parent.typeParameters[0] ? e5.parent.constraint : void 0;
|
|
297804
297804
|
}
|
|
297805
297805
|
function ro3(e5) {
|
|
297806
297806
|
return e5.kind === 80 || e5.kind === 81;
|
|
@@ -301438,7 +301438,7 @@ ${X7.join(`
|
|
|
301438
301438
|
return zo2(zl3(e5), (t13) => WI(t13) ? t13.typeParameters : void 0);
|
|
301439
301439
|
}
|
|
301440
301440
|
function WI(e5) {
|
|
301441
|
-
return
|
|
301441
|
+
return ts8(e5) && !(e5.parent.kind === 327 && (e5.parent.tags.some(Xl4) || e5.parent.tags.some(zb)));
|
|
301442
301442
|
}
|
|
301443
301443
|
function VI(e5) {
|
|
301444
301444
|
let t13 = L23(e5);
|
|
@@ -306291,7 +306291,7 @@ ${X7.join(`
|
|
|
306291
306291
|
function lu5(e5) {
|
|
306292
306292
|
return e5.kind === 351;
|
|
306293
306293
|
}
|
|
306294
|
-
function
|
|
306294
|
+
function ts8(e5) {
|
|
306295
306295
|
return e5.kind === 352;
|
|
306296
306296
|
}
|
|
306297
306297
|
function NJ(e5) {
|
|
@@ -313187,7 +313187,7 @@ ${X7.join(`
|
|
|
313187
313187
|
"use strict";
|
|
313188
313188
|
Q8(), YF();
|
|
313189
313189
|
} }), D7 = {};
|
|
313190
|
-
_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: () => AC, 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: () => AS, 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 });
|
|
313190
|
+
_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: () => AC, 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: () => AS, 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 });
|
|
313191
313191
|
var uv = It9({ "src/typescript/_namespaces/ts.ts"() {
|
|
313192
313192
|
"use strict";
|
|
313193
313193
|
En5(), Kb(), S7(), KF(), ZF();
|
|
@@ -354726,8 +354726,8 @@ var require_dataType = __commonJS({
|
|
|
354726
354726
|
return types;
|
|
354727
354727
|
}
|
|
354728
354728
|
exports2.getSchemaTypes = getSchemaTypes;
|
|
354729
|
-
function getJSONTypes(
|
|
354730
|
-
const types = Array.isArray(
|
|
354729
|
+
function getJSONTypes(ts8) {
|
|
354730
|
+
const types = Array.isArray(ts8) ? ts8 : ts8 ? [ts8] : [];
|
|
354731
354731
|
if (types.every(rules_1.isJSONType))
|
|
354732
354732
|
return types;
|
|
354733
354733
|
throw new Error("type must be JSONType or JSONType[]: " + types.join(","));
|
|
@@ -355779,18 +355779,18 @@ var require_validate = __commonJS({
|
|
|
355779
355779
|
});
|
|
355780
355780
|
narrowSchemaTypes(it6, types);
|
|
355781
355781
|
}
|
|
355782
|
-
function checkMultipleTypes(it6,
|
|
355783
|
-
if (
|
|
355782
|
+
function checkMultipleTypes(it6, ts8) {
|
|
355783
|
+
if (ts8.length > 1 && !(ts8.length === 2 && ts8.includes("null"))) {
|
|
355784
355784
|
strictTypesError(it6, "use allowUnionTypes to allow union type keyword");
|
|
355785
355785
|
}
|
|
355786
355786
|
}
|
|
355787
|
-
function checkKeywordTypes(it6,
|
|
355787
|
+
function checkKeywordTypes(it6, ts8) {
|
|
355788
355788
|
const rules = it6.self.RULES.all;
|
|
355789
355789
|
for (const keyword in rules) {
|
|
355790
355790
|
const rule = rules[keyword];
|
|
355791
355791
|
if (typeof rule == "object" && (0, applicability_1.shouldUseRule)(it6.schema, rule)) {
|
|
355792
355792
|
const { type: type2 } = rule.definition;
|
|
355793
|
-
if (type2.length && !type2.some((t13) => hasApplicableType(
|
|
355793
|
+
if (type2.length && !type2.some((t13) => hasApplicableType(ts8, t13))) {
|
|
355794
355794
|
strictTypesError(it6, `missing type "${type2.join(",")}" for keyword "${keyword}"`);
|
|
355795
355795
|
}
|
|
355796
355796
|
}
|
|
@@ -355799,18 +355799,18 @@ var require_validate = __commonJS({
|
|
|
355799
355799
|
function hasApplicableType(schTs, kwdT) {
|
|
355800
355800
|
return schTs.includes(kwdT) || kwdT === "number" && schTs.includes("integer");
|
|
355801
355801
|
}
|
|
355802
|
-
function includesType(
|
|
355803
|
-
return
|
|
355802
|
+
function includesType(ts8, t13) {
|
|
355803
|
+
return ts8.includes(t13) || t13 === "integer" && ts8.includes("number");
|
|
355804
355804
|
}
|
|
355805
355805
|
function narrowSchemaTypes(it6, withTypes) {
|
|
355806
|
-
const
|
|
355806
|
+
const ts8 = [];
|
|
355807
355807
|
for (const t13 of it6.dataTypes) {
|
|
355808
355808
|
if (includesType(withTypes, t13))
|
|
355809
|
-
|
|
355809
|
+
ts8.push(t13);
|
|
355810
355810
|
else if (withTypes.includes("integer") && t13 === "number")
|
|
355811
|
-
|
|
355811
|
+
ts8.push("integer");
|
|
355812
355812
|
}
|
|
355813
|
-
it6.dataTypes =
|
|
355813
|
+
it6.dataTypes = ts8;
|
|
355814
355814
|
}
|
|
355815
355815
|
function strictTypesError(it6, msg) {
|
|
355816
355816
|
const schemaPath = it6.schemaEnv.baseId + it6.errSchemaPath;
|
|
@@ -392525,14 +392525,14 @@ var require_stream_transform = __commonJS({
|
|
|
392525
392525
|
var Duplex = require_stream_duplex();
|
|
392526
392526
|
require_inherits()(Transform, Duplex);
|
|
392527
392527
|
function afterTransform(er7, data) {
|
|
392528
|
-
var
|
|
392529
|
-
|
|
392530
|
-
var cb =
|
|
392528
|
+
var ts8 = this._transformState;
|
|
392529
|
+
ts8.transforming = false;
|
|
392530
|
+
var cb = ts8.writecb;
|
|
392531
392531
|
if (cb === null) {
|
|
392532
392532
|
return this.emit("error", new ERR_MULTIPLE_CALLBACK());
|
|
392533
392533
|
}
|
|
392534
|
-
|
|
392535
|
-
|
|
392534
|
+
ts8.writechunk = null;
|
|
392535
|
+
ts8.writecb = null;
|
|
392536
392536
|
if (data != null)
|
|
392537
392537
|
this.push(data);
|
|
392538
392538
|
cb(er7);
|
|
@@ -392582,23 +392582,23 @@ var require_stream_transform = __commonJS({
|
|
|
392582
392582
|
cb(new ERR_METHOD_NOT_IMPLEMENTED("_transform()"));
|
|
392583
392583
|
};
|
|
392584
392584
|
Transform.prototype._write = function(chunk, encoding, cb) {
|
|
392585
|
-
var
|
|
392586
|
-
|
|
392587
|
-
|
|
392588
|
-
|
|
392589
|
-
if (!
|
|
392585
|
+
var ts8 = this._transformState;
|
|
392586
|
+
ts8.writecb = cb;
|
|
392587
|
+
ts8.writechunk = chunk;
|
|
392588
|
+
ts8.writeencoding = encoding;
|
|
392589
|
+
if (!ts8.transforming) {
|
|
392590
392590
|
var rs6 = this._readableState;
|
|
392591
|
-
if (
|
|
392591
|
+
if (ts8.needTransform || rs6.needReadable || rs6.length < rs6.highWaterMark)
|
|
392592
392592
|
this._read(rs6.highWaterMark);
|
|
392593
392593
|
}
|
|
392594
392594
|
};
|
|
392595
392595
|
Transform.prototype._read = function(n) {
|
|
392596
|
-
var
|
|
392597
|
-
if (
|
|
392598
|
-
|
|
392599
|
-
this._transform(
|
|
392596
|
+
var ts8 = this._transformState;
|
|
392597
|
+
if (ts8.writechunk !== null && !ts8.transforming) {
|
|
392598
|
+
ts8.transforming = true;
|
|
392599
|
+
this._transform(ts8.writechunk, ts8.writeencoding, ts8.afterTransform);
|
|
392600
392600
|
} else {
|
|
392601
|
-
|
|
392601
|
+
ts8.needTransform = true;
|
|
392602
392602
|
}
|
|
392603
392603
|
};
|
|
392604
392604
|
Transform.prototype._destroy = function(err, cb) {
|
|
@@ -463856,8 +463856,8 @@ ${options8.banner}
|
|
|
463856
463856
|
}
|
|
463857
463857
|
};
|
|
463858
463858
|
function getNormalizedTsConfig(context, workspaceRoot, outputPath, options8) {
|
|
463859
|
-
const config = import_typescript.
|
|
463860
|
-
const tsConfig = import_typescript.
|
|
463859
|
+
const config = (0, import_typescript.readConfigFile)(options8.tsConfig, import_typescript.sys.readFile).config;
|
|
463860
|
+
const tsConfig = (0, import_typescript.parseJsonConfigFileContent)(
|
|
463861
463861
|
{
|
|
463862
463862
|
...config,
|
|
463863
463863
|
compilerOptions: {
|
|
@@ -463868,19 +463868,19 @@ function getNormalizedTsConfig(context, workspaceRoot, outputPath, options8) {
|
|
|
463868
463868
|
outDir: outputPath,
|
|
463869
463869
|
rootDir: workspaceRoot,
|
|
463870
463870
|
baseUrl: workspaceRoot,
|
|
463871
|
-
|
|
463871
|
+
moduleResolution: "node",
|
|
463872
|
+
lib: ["lib.esnext.d.ts", "lib.dom.d.ts", "lib.dom.iterable.d.ts"],
|
|
463872
463873
|
noEmit: false,
|
|
463873
463874
|
esModuleInterop: true,
|
|
463874
463875
|
downlevelIteration: true,
|
|
463875
463876
|
noUnusedLocals: false,
|
|
463876
|
-
forceConsistentCasingInFileNames: true,
|
|
463877
463877
|
emitDeclarationOnly: true,
|
|
463878
463878
|
declaration: true,
|
|
463879
463879
|
declarationMap: true,
|
|
463880
463880
|
declarationDir: (0, import_devkit2.joinPathFragments)(workspaceRoot, "tmp", ".tsup", "declaration")
|
|
463881
463881
|
}
|
|
463882
463882
|
},
|
|
463883
|
-
import_typescript.
|
|
463883
|
+
import_typescript.sys,
|
|
463884
463884
|
(0, import_node_path5.dirname)(options8.tsConfig)
|
|
463885
463885
|
);
|
|
463886
463886
|
tsConfig.options.pathsBasePath = workspaceRoot;
|