@@ -85,7 +85,7 @@ var ts;
85
85
// If changing the text in this section, be sure to test `configureNightly` too.
86
86
ts.versionMajorMinor = "3.4";
87
87
/** The version of the TypeScript compiler release */
88
- ts.version = ts.versionMajorMinor + ".2 ";
88
+ ts.version = ts.versionMajorMinor + ".3 ";
89
89
})(ts || (ts = {}));
90
90
(function (ts) {
91
91
/* @internal */
@@ -125708,12 +125708,13 @@ var ts;
125708
125708
var ExternalProject = /** @class */ (function (_super) {
125709
125709
__extends(ExternalProject, _super);
125710
125710
/*@internal*/
125711
- function ExternalProject(externalProjectName, projectService, documentRegistry, compilerOptions, lastFileExceededProgramSize, compileOnSaveEnabled, projectFilePath) {
125711
+ function ExternalProject(externalProjectName, projectService, documentRegistry, compilerOptions, lastFileExceededProgramSize, compileOnSaveEnabled, projectFilePath, pluginConfigOverrides ) {
125712
125712
var _this = _super.call(this, externalProjectName, ProjectKind.External, projectService, documentRegistry,
125713
125713
/*hasExplicitListOfFiles*/ true, lastFileExceededProgramSize, compilerOptions, compileOnSaveEnabled, projectService.host, ts.getDirectoryPath(projectFilePath || ts.normalizeSlashes(externalProjectName))) || this;
125714
125714
_this.externalProjectName = externalProjectName;
125715
125715
_this.compileOnSaveEnabled = compileOnSaveEnabled;
125716
125716
_this.excludedFiles = [];
125717
+ _this.enableGlobalPlugins(_this.getCompilerOptions(), pluginConfigOverrides);
125717
125718
return _this;
125718
125719
}
125719
125720
ExternalProject.prototype.updateGraph = function () {
@@ -126934,7 +126935,8 @@ var ts;
126934
126935
ProjectService.prototype.createExternalProject = function (projectFileName, files, options, typeAcquisition, excludedFiles) {
126935
126936
var compilerOptions = convertCompilerOptions(options);
126936
126937
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);
126938
126940
project.excludedFiles = excludedFiles;
126939
126941
this.addFilesToNonInferredProject(project, files, externalFilePropertyReader, typeAcquisition);
126940
126942
this.externalProjects.push(project);
@@ -129071,6 +129073,7 @@ var ts;
129071
129073
},
129072
129074
_a[server.CommandNames.ConfigurePlugin] = function (request) {
129073
129075
_this.configurePlugin(request.arguments);
129076
+ _this.doOutput(/*info*/ undefined, server.CommandNames.ConfigurePlugin, request.seq, /*success*/ true);
129074
129077
return _this.notRequired();
129075
129078
},
129076
129079
_a));
@@ -131332,15 +131335,15 @@ var ts;
131332
131335
process.env.USERPROFILE ||
131333
131336
(process.env.HOMEDRIVE && process.env.HOMEPATH && ts.normalizeSlashes(process.env.HOMEDRIVE + process.env.HOMEPATH)) ||
131334
131337
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 );
131336
131339
}
131337
131340
case "openbsd":
131338
131341
case "freebsd":
131339
131342
case "darwin":
131340
131343
case "linux":
131341
131344
case "android": {
131342
131345
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 );
131344
131347
}
131345
131348
default:
131346
131349
return ts.Debug.fail("unsupported platform '" + process.platform + "'");
0 commit comments