enable automatic typings acquisition by default

This commit is contained in:
kieferrm
2016-10-24 17:10:08 -07:00
parent e0f3e5134d
commit f94ebcf2d0
2 changed files with 2 additions and 2 deletions

View File

@@ -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');
}
}