Fix hardcoded lower case S issues for JS/TS only for presentation-ish strinngs

This commit is contained in:
Orta Therox
2019-09-12 09:58:03 -04:00
parent 890cfc1344
commit a89b72bf63
4 changed files with 6 additions and 6 deletions

View File

@@ -75,7 +75,7 @@ export default class TscTaskProvider implements vscode.TaskProvider {
const badTsconfig = /\\tsconfig.*\.json/;
if (badTsconfig.exec(definition.tsconfig) !== null) {
// Warn that the task has the wrong slash type
vscode.window.showWarningMessage(localize('badTsConfig', "Typescript Task in tasks.json contains \"\\\\\". Typescript tasks tsconfig must use \"/\""));
vscode.window.showWarningMessage(localize('badTsConfig', "TypeScript Task in tasks.json contains \"\\\\\". TypeScript tasks tsconfig must use \"/\""));
return undefined;
}