-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Import assertion #40698
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Import assertion #40698
Changes from 29 commits
e1b3b78
66d2273
5f3cea6
5a1af04
4b51ca9
375b433
41a881c
46a3eb1
a484ea2
d64f7ba
68c8c5d
29fe0d3
adcfd1b
fb01eb3
4f22a60
f5e594d
60434d1
ff87d3e
43b67b9
c69a05b
d1c48b5
d14f93a
aa8b856
7a5ec34
9cea9cf
6337a7e
eee2cab
2857d69
88e39d5
f941d92
106ff06
7df4964
6ea3c55
fc51c42
bf7ca71
463138a
b07c6e9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -948,7 +948,7 @@ | |||||
"category": "Error", | ||||||
"code": 1323 | ||||||
}, | ||||||
"Dynamic import must have one specifier as an argument.": { | ||||||
"Dynamic import only supports a second argument when the '--module' option is set to 'esnext'.": { | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
"category": "Error", | ||||||
"code": 1324 | ||||||
}, | ||||||
|
@@ -1368,6 +1368,10 @@ | |||||
"category": "Error", | ||||||
"code": 1433 | ||||||
}, | ||||||
"Dynamic import must only have a specifier and an optional assertion as arguments": { | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Agree, but I think |
||||||
"category": "Message", | ||||||
"code": 1434 | ||||||
}, | ||||||
|
||||||
"The types of '{0}' are incompatible between these types.": { | ||||||
"category": "Error", | ||||||
|
@@ -3352,6 +3356,14 @@ | |||||
"category": "Error", | ||||||
"code": 2817 | ||||||
}, | ||||||
"Import assertions are only supported when the '--module' option is set to 'esnext'.": { | ||||||
"category": "Error", | ||||||
"code": 2818 | ||||||
}, | ||||||
"Import assertions cannot be used with type-only imports or exports.": { | ||||||
"category": "Error", | ||||||
"code": 2819 | ||||||
}, | ||||||
|
||||||
"Import declaration '{0}' is using private name '{1}'.": { | ||||||
"category": "Error", | ||||||
|
Uh oh!
There was an error while loading. Please reload this page.