You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@
7
7
8
8
[](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
9
9
10
-
[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types to JavaScript that support tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).
10
+
[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types to JavaScript that support tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescript).
Copy file name to clipboardexpand all lines: src/compiler/diagnosticMessages.json
+21-2
Original file line number
Diff line number
Diff line change
@@ -1035,6 +1035,10 @@
1035
1035
"category": "Error",
1036
1036
"code": 1355
1037
1037
},
1038
+
"Did you mean to mark this function as 'async'?": {
1039
+
"category": "Error",
1040
+
"code": 1356
1041
+
},
1038
1042
1039
1043
"Duplicate identifier '{0}'.": {
1040
1044
"category": "Error",
@@ -2959,7 +2963,7 @@
2959
2963
"category": "Error",
2960
2964
"code": 4104
2961
2965
},
2962
-
2966
+
2963
2967
"The current host does not support the '{0}' option.": {
2964
2968
"category": "Error",
2965
2969
"code": 5001
@@ -3096,6 +3100,10 @@
3096
3100
"category": "Error",
3097
3101
"code": 5074
3098
3102
},
3103
+
"'{0}' is assignable to the constraint of type '{1}', but '{1}' could be instantiated with a different subtype of constraint '{2}'.": {
3104
+
"category": "Error",
3105
+
"code": 5075
3106
+
},
3099
3107
3100
3108
"Generates a sourcemap for each corresponding '.d.ts' file.": {
3101
3109
"category": "Message",
@@ -4272,7 +4280,10 @@
4272
4280
"category": "Error",
4273
4281
"code": 7051
4274
4282
},
4275
-
4283
+
"Element implicitly has an 'any' type because type '{0}' has no index signature. Did you mean to call '{1}' ?": {
4284
+
"category": "Error",
4285
+
"code": 7052
4286
+
},
4276
4287
"You cannot rename this element.": {
4277
4288
"category": "Error",
4278
4289
"code": 8000
@@ -4954,5 +4965,13 @@
4954
4965
"No value exists in scope for the shorthand property '{0}'. Either declare one or provide an initializer." :{
4955
4966
"category": "Error",
4956
4967
"code": 18004
4968
+
},
4969
+
"Quoted constructors have previously been interpreted as methods, which is incorrect. In TypeScript 3.6, they will be correctly parsed as constructors. In the meantime, consider using 'constructor()' to write a constructor, or '[\"constructor\"]()' to write a method.": {
4970
+
"category": "Error",
4971
+
"code": 18005
4972
+
},
4973
+
"Classes may not have a field named 'constructor'.": {
0 commit comments