提交 9b5795b0 编写于 作者: P Pine Wu

Fix #64993

上级 0f5b2d14
......@@ -52,11 +52,19 @@ export function activate(context: ExtensionContext) {
let tagPaths: string[] = workspace.getConfiguration('html').get('experimental.custom.tags', []);
let attributePaths: string[] = workspace.getConfiguration('html').get('experimental.custom.attributes', []);
if (tagPaths) {
const workspaceRoot = workspace.workspaceFolders![0].uri.fsPath;
tagPaths = tagPaths.map(d => {
return path.resolve(workspaceRoot, d);
});
if (tagPaths && tagPaths.length > 0) {
if (!workspace.workspaceFolders) {
tagPaths = [];
} else {
try {
const workspaceRoot = workspace.workspaceFolders[0].uri.fsPath;
tagPaths = tagPaths.map(d => {
return path.resolve(workspaceRoot, d);
});
} catch (err) {
tagPaths = [];
}
}
}
// Options to control the language client
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册