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

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

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;
}