在C:Users你的用户名.vscodeextensionssencha.vscode-extjs-1.0.1outsrc文件下找到Logger.js,打开它。
找到代码
fs.writeFile(path.join(Platform_1.default.settingsDir, 'vscode-extjs.log'), '');
修改为
// fs.writeFile(path.join(Platform_1.default.settingsDir, 'vscode-extjs.log'), ''); //修复vscode更新后不能使用bug fs.writeFileSync(path.join(Platform_1.default.settingsDir, 'vscode-extjs.log'), '');
或者
fs.writeFile(path.join(Platform_1.default.settingsDir, 'vscode-extjs.log'), '', function(){});
重新打开vscode,解决问题