mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-15 21:36:50 -05:00
added misssing files
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
//// [tests/cases/compiler/relativeNamesInClassicResolution.ts] ////
|
||||
|
||||
//// [a.ts]
|
||||
|
||||
import {x} from "./b"
|
||||
|
||||
//// [b.ts]
|
||||
export let x = 1;
|
||||
|
||||
//// [a.js]
|
||||
define(["require", "exports"], function (require, exports) {
|
||||
"use strict";
|
||||
});
|
||||
//// [b.js]
|
||||
define(["require", "exports"], function (require, exports) {
|
||||
"use strict";
|
||||
exports.x = 1;
|
||||
});
|
||||
Reference in New Issue
Block a user