- 
                Notifications
    You must be signed in to change notification settings 
- Fork 13.1k
Closed
Labels
BugA bug in TypeScriptA bug in TypeScriptFixedA PR has been merged for this issueA PR has been merged for this issue
Milestone
Description
Source:
// foo.ts
var foo = {};
export = foo;// bar.ts
import foo from './foo';
export = foo;Command line: tsc -m amd -t es5 -d foo.ts bar.ts
Expected output of bar.d.ts:
import foo from './foo';
export = foo;Actual output of bar.d.ts:
export = foo;Legacy import foo = require('./foo') still is emitted.
Version: Arnavion/typescript-github#2015-03-05-b784a4212aeb5a4e42a598a8613a0538ac241123
Metadata
Metadata
Assignees
Labels
BugA bug in TypeScriptA bug in TypeScriptFixedA PR has been merged for this issueA PR has been merged for this issue