This commit is contained in:
Erich Gamma 2016-12-13 15:15:17 +01:00
Родитель c03f8ef7fa
Коммит ce595ffde8
1 изменённых файлов: 6 добавлений и 5 удалений

Просмотреть файл

@ -16,8 +16,9 @@ Welcome to the November release of Visual Studio Code. There are a number of sig
* **[Settings improvements](#settings-improvements)** - Easily configure VS Code with global and workspace settings.
* **[Git clone](#git-clone)** - Clone your repo from within VS Code.
* **[New Selection menu](#selection-menu)** - Easily discover and use the editor selection commands.
* **[TypeScript 2.1](#typescript-2.1)** - Improved language support TypeScript.
* **[JavaScript](#javascript)** - Support for Object Rest/Spread.
* **[JavaScript IntelliSense in HTML](#javascript-language-support-in-html)** - Get full JavaScript language support in HTML files.
* **[TypeScript Update](#typescript-update)** - Improved language support for JavaScript and TypeScript.
* **[UI for Multitarget Debugging](#multitarget-debugging)** - Launch simultaneous debug sessions.
The release notes are arranged in the following sections related to VS Code focus areas. Here are some further updates:
@ -220,6 +221,10 @@ These commands are not bound to any keyboard shortcuts by default.
## Languages
### TypeScript 2.1
We now use [TypeScript 2.1](https://blogs.msdn.microsoft.com/typescript/2016/12/07/announcing-typescript-2-1/) for JavaScript and TypeScript language support. TypeScript 2.1 brings a number of new language and tooling features. [Read about what's new in TypeScript 2.1](https://github.com/Microsoft/TypeScript/wiki/What's-new-in-TypeScript#typescript-21).
### JavaScript language support in HTML
Coding assistance for JavaScript embedded in HTML is back! You get code completions and signature help for DOM and JQuery APIs, validation, hovers, Find References and Go To Definition, symbol highlighting and outline (Ctrl + Shift + o) and format. Note that the language support doesn't follow script includes, it only knows about definitions made in the same file.
@ -235,10 +240,6 @@ This brings several improvements for JavaScript support:
* [Configuration inheritance](https://github.com/Microsoft/TypeScript/wiki/What's-new-in-TypeScript#configuration-inheritance) for `jsconfig.json` files.
* IntelliSense for paths in `import` and `require`.
### TypeScript 2.1
We now use [TypeScript 2.1](https://blogs.msdn.microsoft.com/typescript/2016/12/07/announcing-typescript-2-1/) for JavaScript and TypeScript language support. TypeScript 2.1 brings a number of new language and tooling features. [Read about what's new in TypeScript 2.1](https://github.com/Microsoft/TypeScript/wiki/What's-new-in-TypeScript#typescript-21).
### CSS improvements
The CSS language support can now handle the new [@apply rule](https://tabatkins.github.io/specs/css-apply-rule/).