We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
TypeScript Version: 2.7.0-dev.20171114
Steps
Create a.ts and type:
a.ts
export const x = 0;
Create b.ts and type:
b.ts
export {}; declare module "./a" { export const y: number; }
Expected behavior:
No error.
Actual behavior:
In services, see error: Invalid module name in augmentation, module './a' cannot be found. No error on command line.
Invalid module name in augmentation, module './a' cannot be found.