This commit is contained in:
Pine Wu 2019-01-28 15:45:53 -08:00
parent 62468cb356
commit 0abf8dcbd0
2 changed files with 3 additions and 5 deletions

View file

@ -17,8 +17,7 @@
],
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": ["${workspaceFolder}/client/out/**/*.js"],
"preLaunchTask": "npm"
"outFiles": ["${workspaceFolder}/client/out/**/*.js"]
},
{
"name": "Launch Tests",
@ -28,8 +27,7 @@
"args": ["--extensionDevelopmentPath=${workspaceFolder}", "--extensionTestsPath=${workspaceFolder}/client/out/test" ],
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": ["${workspaceFolder}/client/out/test/**/*.js"],
"preLaunchTask": "npm"
"outFiles": ["${workspaceFolder}/client/out/test/**/*.js"]
},
{
"name": "Attach Language Server",

View file

@ -21,7 +21,7 @@ export function getDataProviders(dataPaths?: string[]): IHTMLDataProvider[] {
providers.push(new HTMLDataProvider(`customProvider${i}`, htmlData));
}
} catch (err) {
console.log(`Failed to laod tag from ${path}`);
console.log(`Failed to load tag from ${path}`);
}
});