Using the TypeScript 1.6 beta in an AMD project with the following structure:
In one.ts:
export var something = 7;
In two.ts:
export import Something = require("one");
The project compiles successfully, but the language service for Visual Studio 2013 reports an error "Cannot find module 'one'." in two.ts.