in src/BaseHTMLGenerator.ts [213:221]
private writeHTML() {
if (vscode.workspace.rootPath) {
fs.writeFile(`${vscode.workspace.rootPath}/${FilePaths.OUTPUT_PATH}`, this.html, function (err) {
if (err) {
return console.log(err);
}
});
}
}