Skip to content

Commit bd80ced

Browse files
authored
Merge pull request #1489 from Microsoft/fix1464
Fix for missing intellisense property for VS 2015
2 parents 9d24174 + 314f91b commit bd80ced

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Nodejs/Product/Nodejs/Options/NodejsIntellisenseOptionsPage.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,10 @@ public override void SaveSettingsToStorage() {
8484
}
8585

8686
// Save settings.
87+
#if DEV14
88+
// This setting needs to be present for the TypeScript editor to handle .js files in NTVS
89+
SaveString("AnalysisLevel", "Preview");
90+
#endif
8791
SaveBool(EnableAutomaticTypingsAcquisitionSetting, EnableAutomaticTypingsAcquisition);
8892
SaveBool(ShowTypingsInfoBarSetting, ShowTypingsInfoBar);
8993
SaveBool(SaveChangesToConfigFileSetting, SaveChangesToConfigFile);

0 commit comments

Comments
 (0)