Skip to content
This repository was archived by the owner on Sep 9, 2025. It is now read-only.

Commit b9f121f

Browse files
author
Hendrik van Antwerpen
committed
Add failing test for relative imports
1 parent f13243d commit b9f121f

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/*--- path: ./ModA.ts ---*/
2+
3+
export const a = 42;
4+
5+
/*--- path: ./B/ModB.ts ---*/
6+
7+
import { a } from "./ModA";
8+
// ^ defined:

0 commit comments

Comments
 (0)