Skip to content

Commit

Permalink
Only exclude JS files when there’s a corresponding TS file
Browse files Browse the repository at this point in the history
  • Loading branch information
tjvantoll committed Oct 19, 2016
1 parent fc31e01 commit f9a0fee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .vscode/settings.json
@@ -1,7 +1,7 @@
// Place your settings in this file to overwrite default and user settings.
{
"files.exclude": {
"**/*.js": true,
"**/*.js.map": true
"**/*.js": { "when": "$(basename).ts" },
"**/*.map": { "when": "$(basename).map" }
}
}

0 comments on commit f9a0fee

Please sign in to comment.