fix(basic.gblib): More error handling improvements.

This commit is contained in:
Rodrigo Rodriguez 2021-02-23 09:03:58 -03:00
parent ec47fda964
commit cae28e5fd1

View file

@ -50,6 +50,8 @@ export class TSCompiler {
if (message.indexOf('Cannot find name') >= 0
|| message.indexOf('Cannot find module') >= 0
|| message.indexOf('implicitly has an') >= 0
|| message.indexOf('Cannot invoke an') >= 0
|| message.indexOf('Cannot use imports, exports, or module') >= 0
) {
return true;
}