tsproject icon indicating copy to clipboard operation
tsproject copied to clipboard

Component d.ts file for CommonJS module causes code generation error

Open ToddThomson opened this issue 8 years ago • 0 comments

TsProject outputs:

export declare namespace ModuleName { ... }

but for a CommonJS module it should perhaps output:

declare namespace ModuleName { ... }
export = ModuleName;

Currently investigating...

ToddThomson avatar Apr 06 '16 22:04 ToddThomson