Skip to content

Commit 3be5574

Browse files
resolve confilict
2 parents 67b621e + 35331bd commit 3be5574

File tree

1 file changed

+30
-2
lines changed

1 file changed

+30
-2
lines changed

src/compiler/diagnosticMessages.json

Lines changed: 30 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -851,10 +851,14 @@
851851
"category": "Error",
852852
"code": 1317
853853
},
854-
"A default export can only be used in an ECMAScript-style module.": {
854+
"An abstract accessor cannot have an implementation.": {
855855
"category": "Error",
856856
"code": 1318
857857
},
858+
"A default export can only be used in an ECMAScript-style module.": {
859+
"category": "Error",
860+
"code": 1319
861+
},
858862
"Duplicate identifier '{0}'.": {
859863
"category": "Error",
860864
"code": 2300
@@ -1027,6 +1031,10 @@
10271031
"category": "Error",
10281032
"code": 2342
10291033
},
1034+
"This syntax requires an imported helper named '{1}', but module '{0}' has no exported member '{1}'.": {
1035+
"category": "Error",
1036+
"code": 2343
1037+
},
10301038
"Type '{0}' does not satisfy the constraint '{1}'.": {
10311039
"category": "Error",
10321040
"code": 2344
@@ -1067,6 +1075,10 @@
10671075
"category": "Error",
10681076
"code": 2353
10691077
},
1078+
"This syntax requires an imported helper but module '{0}' cannot be found.": {
1079+
"category": "Error",
1080+
"code": 2354
1081+
},
10701082
"A function whose declared type is neither 'void' nor 'any' must return a value.": {
10711083
"category": "Error",
10721084
"code": 2355
@@ -1999,6 +2011,10 @@
19992011
"category": "Error",
20002012
"code": 2701
20012013
},
2014+
"'{0}' only refers to a type, but is being used as a namespace here.": {
2015+
"category": "Error",
2016+
"code": 2702
2017+
},
20022018

20032019
"Import declaration '{0}' is using private name '{1}'.": {
20042020
"category": "Error",
@@ -2288,6 +2304,14 @@
22882304
"category": "Message",
22892305
"code": 4090
22902306
},
2307+
"Parameter '{0}' of index signature from exported interface has or is using name '{1}' from private module '{2}'.": {
2308+
"category": "Error",
2309+
"code": 4091
2310+
},
2311+
"Parameter '{0}' of index signature from exported interface has or is using private name '{1}'.": {
2312+
"category": "Error",
2313+
"code": 4092
2314+
},
22912315

22922316
"The current host does not support the '{0}' option.": {
22932317
"category": "Error",
@@ -2453,7 +2477,7 @@
24532477
"category": "Message",
24542478
"code": 6012
24552479
},
2456-
"Specify ECMAScript target version: 'ES3' (default), 'ES5', or 'ES2015'": {
2480+
"Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', or 'ESNEXT'": {
24572481
"category": "Message",
24582482
"code": 6015
24592483
},
@@ -3145,6 +3169,10 @@
31453169
"category": "Error",
31463170
"code": 17010
31473171
},
3172+
"'super' must be called before accessing a property of 'super' in the constructor of a derived class.": {
3173+
"category": "Error",
3174+
"code": 17011
3175+
},
31483176

31493177
"Circularity detected while resolving configuration: {0}": {
31503178
"category": "Error",

0 commit comments

Comments
 (0)