Skip to content

Commit

Permalink
Merge pull request #1489 from Microsoft/fix1464
Browse files Browse the repository at this point in the history
Fix for missing intellisense property for VS 2015
  • Loading branch information
billti committed Mar 2, 2017
2 parents 9d24174 + 314f91b commit bd80ced
Showing 1 changed file with 4 additions and 0 deletions.
Expand Up @@ -84,6 +84,10 @@ public NodejsIntellisenseOptionsPage()
}

// Save settings.
#if DEV14
// This setting needs to be present for the TypeScript editor to handle .js files in NTVS
SaveString("AnalysisLevel", "Preview");
#endif
SaveBool(EnableAutomaticTypingsAcquisitionSetting, EnableAutomaticTypingsAcquisition);
SaveBool(ShowTypingsInfoBarSetting, ShowTypingsInfoBar);
SaveBool(SaveChangesToConfigFileSetting, SaveChangesToConfigFile);
Expand Down

0 comments on commit bd80ced

Please sign in to comment.