mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-05 16:38:05 -06:00
added misssing files
This commit is contained in:
parent
9960064bc3
commit
3ecc42beb2
@ -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;
|
||||
});
|
||||
Loading…
x
Reference in New Issue
Block a user