Skip to content

Commit

Permalink
fix: add additional languages for browser debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
connor4312 committed May 11, 2021
1 parent 3e21457 commit 27931dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ This changelog records changes to stable releases since 1.50.2. "TBA" changes he
- fix: contribute js-debug to html ([ref](https://github.com/microsoft/vscode/issues/123106))
- chore: log errors activating auto attach
- fix: intermittent debug failures with browsers, especially Electron ([ref](https://github.com/microsoft/vscode/issues/123420)))
- fix: add additional languages for browser debugging ([ref](https://github.com/microsoft/vscode/issues/123484))

## v1.56 (April 2021)

Expand Down
2 changes: 1 addition & 1 deletion src/build/generate-contributions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ interface IDebugger<T extends AnyLaunchConfiguration> {
}

const commonLanguages = ['javascript', 'typescript', 'javascriptreact', 'typescriptreact'];
const browserLanguages = [...commonLanguages, 'html'];
const browserLanguages = [...commonLanguages, 'html', 'css', 'coffeescript', 'handlebars', 'vue'];

const baseConfigurationAttributes: ConfigurationAttributes<IBaseConfiguration> = {
resolveSourceMapLocations: {
Expand Down

0 comments on commit 27931dd

Please sign in to comment.