@@ -85,7 +85,7 @@ var ts;
8585 // If changing the text in this section, be sure to test `configureNightly` too.
8686 ts.versionMajorMinor = "3.4";
8787 /** The version of the TypeScript compiler release */
88- ts.version = ts.versionMajorMinor + ".2 ";
88+ ts.version = ts.versionMajorMinor + ".3 ";
8989})(ts || (ts = {}));
9090(function (ts) {
9191 /* @internal */
@@ -125708,12 +125708,13 @@ var ts;
125708125708 var ExternalProject = /** @class */ (function (_super) {
125709125709 __extends(ExternalProject, _super);
125710125710 /*@internal*/
125711- function ExternalProject(externalProjectName, projectService, documentRegistry, compilerOptions, lastFileExceededProgramSize, compileOnSaveEnabled, projectFilePath) {
125711+ function ExternalProject(externalProjectName, projectService, documentRegistry, compilerOptions, lastFileExceededProgramSize, compileOnSaveEnabled, projectFilePath, pluginConfigOverrides ) {
125712125712 var _this = _super.call(this, externalProjectName, ProjectKind.External, projectService, documentRegistry,
125713125713 /*hasExplicitListOfFiles*/ true, lastFileExceededProgramSize, compilerOptions, compileOnSaveEnabled, projectService.host, ts.getDirectoryPath(projectFilePath || ts.normalizeSlashes(externalProjectName))) || this;
125714125714 _this.externalProjectName = externalProjectName;
125715125715 _this.compileOnSaveEnabled = compileOnSaveEnabled;
125716125716 _this.excludedFiles = [];
125717+ _this.enableGlobalPlugins(_this.getCompilerOptions(), pluginConfigOverrides);
125717125718 return _this;
125718125719 }
125719125720 ExternalProject.prototype.updateGraph = function () {
@@ -126934,7 +126935,8 @@ var ts;
126934126935 ProjectService.prototype.createExternalProject = function (projectFileName, files, options, typeAcquisition, excludedFiles) {
126935126936 var compilerOptions = convertCompilerOptions(options);
126936126937 var project = new server.ExternalProject(projectFileName, this, this.documentRegistry, compilerOptions,
126937- /*lastFileExceededProgramSize*/ this.getFilenameForExceededTotalSizeLimitForNonTsFiles(projectFileName, compilerOptions, files, externalFilePropertyReader), options.compileOnSave === undefined ? true : options.compileOnSave);
126938+ /*lastFileExceededProgramSize*/ this.getFilenameForExceededTotalSizeLimitForNonTsFiles(projectFileName, compilerOptions, files, externalFilePropertyReader), options.compileOnSave === undefined ? true : options.compileOnSave,
126939+ /*projectFilePath*/ undefined, this.currentPluginConfigOverrides);
126938126940 project.excludedFiles = excludedFiles;
126939126941 this.addFilesToNonInferredProject(project, files, externalFilePropertyReader, typeAcquisition);
126940126942 this.externalProjects.push(project);
@@ -129071,6 +129073,7 @@ var ts;
129071129073 },
129072129074 _a[server.CommandNames.ConfigurePlugin] = function (request) {
129073129075 _this.configurePlugin(request.arguments);
129076+ _this.doOutput(/*info*/ undefined, server.CommandNames.ConfigurePlugin, request.seq, /*success*/ true);
129074129077 return _this.notRequired();
129075129078 },
129076129079 _a));
@@ -131332,15 +131335,15 @@ var ts;
131332131335 process.env.USERPROFILE ||
131333131336 (process.env.HOMEDRIVE && process.env.HOMEPATH && ts.normalizeSlashes(process.env.HOMEDRIVE + process.env.HOMEPATH)) ||
131334131337 os.tmpdir();
131335- return ts.combinePaths(ts.combinePaths(ts.normalizeSlashes(basePath), "Microsoft/TypeScript"), ts.versionMajorMinor );
131338+ return ts.combinePaths(ts.combinePaths(ts.normalizeSlashes(basePath), "Microsoft/TypeScript"), ts.version );
131336131339 }
131337131340 case "openbsd":
131338131341 case "freebsd":
131339131342 case "darwin":
131340131343 case "linux":
131341131344 case "android": {
131342131345 var cacheLocation = getNonWindowsCacheLocation(process.platform === "darwin");
131343- return ts.combinePaths(ts.combinePaths(cacheLocation, "typescript"), ts.versionMajorMinor );
131346+ return ts.combinePaths(ts.combinePaths(cacheLocation, "typescript"), ts.version );
131344131347 }
131345131348 default:
131346131349 return ts.Debug.fail("unsupported platform '" + process.platform + "'");
0 commit comments