actboy168 / vscode-tasks

MIT License
37 stars 14 forks source link

Class constructor Yt cannot be invoked without 'new' #37

Closed antfp closed 1 year ago

antfp commented 1 year ago

Have this error when loading the extension: Class constructor Yt cannot be invoked without 'new', which prevents the display of the tasks bar. Traced back the error to line 285 of extension.js : 285 --> return vscode.ThemeColor(color); Changed it to 285 --> return new vscode.ThemeColor(color); and now everything works fine.

Computer: Apple M1 MacBook Pro. OS: macOS Ventura

actboy168 commented 1 year ago

Thanks.