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: src/compiler/diagnosticMessages.json
+14-2
Original file line number
Diff line number
Diff line change
@@ -4458,6 +4458,10 @@
4458
4458
"category": "Error",
4459
4459
"code": 6309
4460
4460
},
4461
+
"Referenced project '{0}' may not disable emit.": {
4462
+
"category": "Error",
4463
+
"code": 6310
4464
+
},
4461
4465
"Project '{0}' is out of date because oldest output '{1}' is older than newest input '{2}'": {
4462
4466
"category": "Message",
4463
4467
"code": 6350
@@ -5032,11 +5036,11 @@
5032
5036
"category": "Error",
5033
5037
"code": 17015
5034
5038
},
5035
-
"JSX fragment is not supported when using --jsxFactory": {
5039
+
"The 'jsxFragmentFactory' compiler option must be provided to use JSX fragments with the 'jsxFactory' compiler option.": {
5036
5040
"category": "Error",
5037
5041
"code": 17016
5038
5042
},
5039
-
"JSX fragment is not supported when using an inline JSX factory pragma": {
5043
+
"An @jsxFrag pragma is required when using an @jsx pragma with JSX fragments.": {
5040
5044
"category": "Error",
5041
5045
"code": 17017
5042
5046
},
@@ -5842,5 +5846,13 @@
5842
5846
"Only numeric enums can have computed members, but this expression has type '{0}'. If you do not need exhaustiveness checks, consider using an object literal instead.": {
5843
5847
"category": "Error",
5844
5848
"code": 18033
5849
+
},
5850
+
"Specify the JSX fragment factory function to use when targeting 'react' JSX emit with 'jsxFactory' compiler option is specified, e.g. 'Fragment'.": {
5851
+
"category": "Message",
5852
+
"code": 18034
5853
+
},
5854
+
"Invalid value for 'jsxFragmentFactory'. '{0}' is not a valid identifier or qualified-name.": {
0 commit comments