Skip to content

Commit 3ecc42b

Browse files
committed
added misssing files
1 parent 9960064 commit 3ecc42b

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
//// [tests/cases/compiler/relativeNamesInClassicResolution.ts] ////
2+
3+
//// [a.ts]
4+
5+
import {x} from "./b"
6+
7+
//// [b.ts]
8+
export let x = 1;
9+
10+
//// [a.js]
11+
define(["require", "exports"], function (require, exports) {
12+
"use strict";
13+
});
14+
//// [b.js]
15+
define(["require", "exports"], function (require, exports) {
16+
"use strict";
17+
exports.x = 1;
18+
});

0 commit comments

Comments
 (0)