mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-27 12:04:04 +01:00
enable automatic typings acquisition by default
This commit is contained in:
@@ -456,7 +456,7 @@ export default class TypeScriptServiceClient implements ITypescriptServiceClient
|
||||
let args: string[] = [];
|
||||
if (this.apiVersion.has206Features()) {
|
||||
args.push('--useSingleInferredProject');
|
||||
if (!workspace.getConfiguration().get<boolean>('typescript.experimentalAutomaticTypeAcquisition', false)) {
|
||||
if (!workspace.getConfiguration().get<boolean>('typescript.experimentalAutomaticTypeAcquisition', true)) {
|
||||
args.push('--disableAutomaticTypingAcquisition');
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user