Skip to content

Commit 75187fb

Browse files
committed
Update older baseline
1 parent d6c32ba commit 75187fb

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

tests/baselines/reference/verbatimModuleSyntaxNoElisionCJS.errors.txt

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
/a.ts(2,10): error TS1282: An 'export =' declaration must reference a value when 'verbatimModuleSyntax' is enabled, but 'I' only refers to a type.
22
/b.ts(1,1): error TS1484: 'I' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.
33
/d.ts(3,10): error TS1283: An 'export =' declaration must reference a real value when 'verbatimModuleSyntax' is enabled, but 'J' resolves to a type-only declaration.
4-
/e.d.ts(2,10): error TS1282: An 'export =' declaration must reference a value when 'verbatimModuleSyntax' is enabled, but 'I' only refers to a type.
54

65

76
==== /a.ts (1 errors) ====
@@ -29,11 +28,9 @@
2928
~
3029
!!! error TS1283: An 'export =' declaration must reference a real value when 'verbatimModuleSyntax' is enabled, but 'J' resolves to a type-only declaration.
3130

32-
==== /e.d.ts (1 errors) ====
31+
==== /e.d.ts (0 errors) ====
3332
interface I {}
3433
export = I;
35-
~
36-
!!! error TS1282: An 'export =' declaration must reference a value when 'verbatimModuleSyntax' is enabled, but 'I' only refers to a type.
3734

3835
==== /f.ts (0 errors) ====
3936
import type I = require("./e");

0 commit comments

Comments
 (0)