You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: scripting-docs/javascript/javascript-in-vs-2017.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -59,7 +59,7 @@ By default this is `false`, as TypeScript compiles to JavaScript, and this is ne
59
59
The output location, as well as non-project folders such as `node_modules` or `temp`, should be added to this setting.
60
60
-`enableAutoDiscovery`: This setting enables the automatic detection and download of definition files as outlined above.
61
61
-`compileOnSave`: This setting tells the compiler if it should recompile any time a source file is saved in Visual Studio.
62
-
-`typeAcquisition`: This set of settings control the behavior of automatic type acquisition (further explain in [this section](/visualstudio/ide/javascript-intellisense.md#Auto))
62
+
-`typeAcquisition`: This set of settings control the behavior of automatic type acquisition (further explain in [this section](https://docs.microsoft.com/en-us/visualstudio/ide/javascript-intellisense#Auto))
63
63
64
64
In order to convert JavaScript files to CommonJS modules and place them in an `./out` folder, you could use the following `tsconfig.json` file.
JavaScript IntelliSense in [!include[vs_dev15](../../docs/misc/includes/vs_dev15_md.md)] will now display a lot more information on parameters and member lists. This new information is provided by the TypeScript language service, which uses static analysis behind the scenes to better understand your code. You can read more about the new IntelliSense experience and how it works [here](/visualstudio/ide/javascript-intellisense.md).
120
+
JavaScript IntelliSense in [!include[vs_dev15](../../docs/misc/includes/vs_dev15_md.md)] will now display a lot more information on parameters and member lists. This new information is provided by the TypeScript language service, which uses static analysis behind the scenes to better understand your code. You can read more about the new IntelliSense experience and how it works [here](/visualstudio/ide/javascript-intellisense/).
121
121
122
122
## <aname="JSX"></a> JSX syntax support
123
123
@@ -210,7 +210,7 @@ Previously it was fairly complicated to understand at any given moment which fil
210
210
Sometimes it was desirable to have all your files in scope, other times it wasn't, but this lead to complex configurations involving manual reference management.
211
211
Going forward you no longer need to think about reference management and so you don't need triple slash references comments or `_references.js` files.
212
212
213
-
See the [JavaScript IntelliSense](/visualstudio/ide/javascript-intellisense.md) page for more info on how IntelliSense works.
213
+
See the [JavaScript IntelliSense](/visualstudio/ide/javascript-intellisense/) page for more info on how IntelliSense works.
214
214
215
215
## VSDoc
216
216
XML documentation comments, sometimes referred to as VSDocs, could previously be used to decorate your source code with additional data that would be used to buff up IntelliSense results.
0 commit comments