vscode/extensions/typescript-language-features
Matt Bierner b4964bcf35 Replace some common index based for loops with for-of loops
Replaces many loops of the form:

```js
for (let i = 0; i < elements.length; ++i) {
    const i = elements[i];
   ...
}
```

with:

```js
for (const element of elements) {
    ...
}
```

Mix of a horrible regex based find/replace and manual touch ups
2019-01-03 19:11:18 -08:00
..
schemas Allow extension contributed TS plugins to be loaded for workspace versions of TS 2018-12-13 14:29:32 -08:00
src Replace some common index based for loops with for-of loops 2019-01-03 19:11:18 -08:00
.vscodeignore delete OSSREADME.json 2018-11-20 12:54:22 +01:00
cgmanifest.json Adding version info for ts non-code dependencies 2018-11-27 11:40:27 -08:00
extension.webpack.config.js webpack - move __dirname-config up into shared config 2018-09-03 12:38:46 +02:00
icon.png [ImgBot] Optimize images 2018-11-06 20:46:03 +00:00
language-configuration.json Rename typescript to typescript-language-features 2018-03-23 13:31:29 -07:00
package.json Added test for #63100 2018-11-29 17:09:48 -08:00
package.nls.json Add more detail to disableAutomaticTypeAcquisition setting description 2018-10-17 16:22:25 -07:00
README.md Edit pass on new built-in extension comments (#54277) 2018-07-13 15:28:27 -07:00
tsconfig.json Introduce a shared tsconfig for extensions 2018-10-01 16:35:43 -07:00
yarn.lock Update applicationInsights for #60585 2018-10-16 16:29:08 -07:00

Language Features for Typescript and Javascript files

Notice: This extension is bundled with Visual Studio Code. It can be disabled but not uninstalled.

Features

See Typescript in Visual Studio Code and Javascript in Visual Studio Code to learn about the features of this extension.