Files
vscode/extensions/typescript-language-features
Thai Pangsakulyanont 84424c84fd Use jsonc parser to parse a config file
This fixes a problem where the `typescript` VSCode task runs `tsc` with `-p`
when it should run `-b` when `tsconfig.json` has the `"references"` property.

```js
{
  "extends": "./tsconfig.app.json",
  // meow
  "references": [{ "path": "./tsconfig.lib.json" }]
}
```

This bug happens because while `tsconfig.json` file allows comment, the
parsing logic here uses vanilla `JSON.parse` which cannot parse comments.

This commit fixes it by using `jsonc.parse` instead.
2019-01-30 17:46:45 +07:00
..
2018-11-20 12:54:22 +01:00
2018-11-06 20:46:03 +00:00
2019-01-10 17:43:25 -08: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.