Open
Description
From @dbaeumer on October 31, 2017 11:29
Testing: #37177
- vscode source code opened in VS Code
- open a file that doesn't import
'vs/base/common/types'
- type isStringArray
- select the entry from code complete list
- the following import is inserted:
import { isStringArray } from 'vs/base/common/types';
However what I want in this case is
import * as Types from 'vs/base/common/types';
and the code should become Types.isStringArray
Would be cool if I can control this via a setting.
Copied from original issue: microsoft/vscode#37258