
TypeScript Version: master, commit c349dea8714f384c24
Code
At the caret (^), get completions, typing ctrl+space to do so.
// app.ts
import * as A from "^";
// node_modules/@types/foo__bar/index.d.ts
declare module "@biz/baz" { function fun(): string; }
// node_modules/@types/a__b/index.d.ts
export declare let x: number;
Expected behavior:
Get import for @foo/bar ,@biz/baz and @a/b
Actual behavior:
Get import for foo__bar, @biz/baz and a__b.
EDIT: clarifications
TypeScript Version: master, commit c349dea8714f384c24
Code
At the caret (
^), get completions, typing ctrl+space to do so.Expected behavior:
Get import for
@foo/bar,@biz/bazand@a/bActual behavior:
Get import for
foo__bar,@biz/bazanda__b.EDIT: clarifications