Closed
Description
- VSCode Version: 1.29.1 (1.29.1)
- OS Version: OSX 10.12.6
Steps to Reproduce:
- create a node typescript project
npm install querystring
type let m = new Map<string,
Expected:
I would have a Map with string key. No autocomplete would be preformed since I already have a valid statement
Result:
When you type the ,
vscode will autocomplete to let spMap = new Map<stringify,
and add an import for import { stringify } from 'querystring';
.
I haven't tested this with other primitive types, so I only know for sure that it fails with string
.
Does this issue occur when all extensions are disabled?: Yes