We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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.
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.