File tree 8 files changed +16
-8
lines changed
8 files changed +16
-8
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cook
67
67
var ts;
68
68
(function (ts) {
69
69
ts.versionMajorMinor = "3.9";
70
- ts.version = "3.9.7 ";
70
+ ts.version = "3.9.8 ";
71
71
function tryGetNativeMap() {
72
72
return typeof Map !== "undefined" && "entries" in Map.prototype ? Map : undefined;
73
73
}
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ var ts;
94
94
// If changing the text in this section, be sure to test `configurePrerelease` too.
95
95
ts.versionMajorMinor = "3.9";
96
96
/** The version of the TypeScript compiler release */
97
- ts.version = "3.9.7 ";
97
+ ts.version = "3.9.8 ";
98
98
/**
99
99
* Returns the native Map implementation if it is available and compatible (i.e. supports iteration).
100
100
*/
@@ -143754,6 +143754,10 @@ var ts;
143754
143754
Project.prototype.enablePlugin = function (pluginConfigEntry, searchPaths, pluginConfigOverrides) {
143755
143755
var _this = this;
143756
143756
this.projectService.logger.info("Enabling plugin " + pluginConfigEntry.name + " from candidate paths: " + searchPaths.join(","));
143757
+ if (ts.parsePackageName(pluginConfigEntry.name).rest) {
143758
+ this.projectService.logger.info("kipped loading plugin " + pluginConfigEntry.name + " because only package name is allowed plugin name");
143759
+ return;
143760
+ }
143757
143761
var log = function (message) { return _this.projectService.logger.info(message); };
143758
143762
var errorLogs;
143759
143763
var logError = function (message) { (errorLogs || (errorLogs = [])).push(message); };
Original file line number Diff line number Diff line change @@ -244,7 +244,7 @@ var ts;
244
244
// If changing the text in this section, be sure to test `configurePrerelease` too.
245
245
ts.versionMajorMinor = "3.9";
246
246
/** The version of the TypeScript compiler release */
247
- ts.version = "3.9.7 ";
247
+ ts.version = "3.9.8 ";
248
248
/**
249
249
* Returns the native Map implementation if it is available and compatible (i.e. supports iteration).
250
250
*/
@@ -143904,6 +143904,10 @@ var ts;
143904
143904
Project.prototype.enablePlugin = function (pluginConfigEntry, searchPaths, pluginConfigOverrides) {
143905
143905
var _this = this;
143906
143906
this.projectService.logger.info("Enabling plugin " + pluginConfigEntry.name + " from candidate paths: " + searchPaths.join(","));
143907
+ if (ts.parsePackageName(pluginConfigEntry.name).rest) {
143908
+ this.projectService.logger.info("kipped loading plugin " + pluginConfigEntry.name + " because only package name is allowed plugin name");
143909
+ return;
143910
+ }
143907
143911
var log = function (message) { return _this.projectService.logger.info(message); };
143908
143912
var errorLogs;
143909
143913
var logError = function (message) { (errorLogs || (errorLogs = [])).push(message); };
Original file line number Diff line number Diff line change @@ -244,7 +244,7 @@ var ts;
244
244
// If changing the text in this section, be sure to test `configurePrerelease` too.
245
245
ts.versionMajorMinor = "3.9";
246
246
/** The version of the TypeScript compiler release */
247
- ts.version = "3.9.7 ";
247
+ ts.version = "3.9.8 ";
248
248
/**
249
249
* Returns the native Map implementation if it is available and compatible (i.e. supports iteration).
250
250
*/
Original file line number Diff line number Diff line change @@ -244,7 +244,7 @@ var ts;
244
244
// If changing the text in this section, be sure to test `configurePrerelease` too.
245
245
ts.versionMajorMinor = "3.9";
246
246
/** The version of the TypeScript compiler release */
247
- ts.version = "3.9.7 ";
247
+ ts.version = "3.9.8 ";
248
248
/**
249
249
* Returns the native Map implementation if it is available and compatible (i.e. supports iteration).
250
250
*/
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ var ts;
83
83
// If changing the text in this section, be sure to test `configurePrerelease` too.
84
84
ts.versionMajorMinor = "3.9";
85
85
/** The version of the TypeScript compiler release */
86
- ts.version = "3.9.7 ";
86
+ ts.version = "3.9.8 ";
87
87
/**
88
88
* Returns the native Map implementation if it is available and compatible (i.e. supports iteration).
89
89
*/
Original file line number Diff line number Diff line change 2
2
"name" : " typescript" ,
3
3
"author" : " Microsoft Corp." ,
4
4
"homepage" : " https://www.typescriptlang.org/" ,
5
- "version" : " 3.9.7 " ,
5
+ "version" : " 3.9.8 " ,
6
6
"license" : " Apache-2.0" ,
7
7
"description" : " TypeScript is a language for application scale JavaScript development" ,
8
8
"keywords" : [
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ namespace ts {
3
3
// If changing the text in this section, be sure to test `configurePrerelease` too.
4
4
export const versionMajorMinor = "3.9" ;
5
5
/** The version of the TypeScript compiler release */
6
- export const version = "3.9.7 " as string ;
6
+ export const version = "3.9.8 " as string ;
7
7
8
8
/**
9
9
* Type of objects whose values are all of the same type.
You can’t perform that action at this time.
0 commit comments