update css/html/json dependencies and webpack cleanup (fixes #57431, fixes #58417)

This commit is contained in:
Martin Aeschlimann
2018-09-19 16:52:42 +02:00
parent d216f0e06e
commit 2dd4d2b56f
22 changed files with 133 additions and 216 deletions

View File

@@ -234,7 +234,11 @@ function getSettings(): Settings {
if (folders) {
for (let folder of folders) {
let folderUri = folder.uri;
let schemaConfigInfo = workspace.getConfiguration('json', folderUri).inspect<JSONSchemaSettings[]>('schemas');
console.log(`workspaceValue : ${!!schemaConfigInfo!.workspaceValue}`);
console.log(`workspaceFolderValue : ${!!schemaConfigInfo!.workspaceFolderValue}`);
let folderSchemas = schemaConfigInfo!.workspaceFolderValue;
if (Array.isArray(folderSchemas)) {
let folderPath = folderUri.toString();