identifier not found "WEBLib"

Hello Dears,
After purchasing the TMS Web Core license my project compiled with the trial version won't compile with the Following error :

Checking project dependencies...
Compiling ZebraWeb.dproj (Debug, Win32)
Command line: C:\Users\chaouki\Documents\tmssoftware\TMS WEB Core RSXE11\Compiler\pas2js.exe C:\Users\chaouki\Documents\Embarcadero\Studio\Projects\ZebraWeb\ZebraWeb.dpr -MDelphi -l -JeJSON -Jminclude -O- -Jc -Pecmascript5 -viw -vl -vnh -vm5026,5024,3021,5023,4501 -Jitms.js -Jirtl.js "-FuC:\Users\chaouki\Documents\Embarcadero\Studio\Projects\ZebraWeb;C:\Users\chaouki\Documents\tmssoftware\TMS WEB Core RSXE11\Core Source\;C:\Users\chaouki\Documents\tmssoftware\TMS WEB Core RSXE11\Core Source\RTL;C:\Users\chaouki\Documents\tmssoftware\TMS WEB Core RSXE11\Core Source;C:\Users\chaouki\Documents\tmssoftware\TMS WEB Core RSXE11\Compiler;C:\Program Files (x86)\tmssoftware\TMSFNCUIPack RSXE11\WEB;C:\Users\chaouki\Documents\tmssoftware\TMS Busines Core Library\source\core\common;C:\Users\chaouki\Documents\tmssoftware\TMS Busines Core Library\packages\web\pju;C:\Users\chaouki\Documents\tmssoftware\TMS XData\source\core\common;C:\Users\chaouki\Documents\tmssoftware\TMS XData\source\core\web;C:\Users\chaouki\Documents\tmssoftware\TMS XData\packages\web\pju;C:\Users\chaouki\Documents\tmssoftware\TMS WEB Core RSXE11" "-FiC:\Users\chaouki\Documents\Embarcadero\Studio\Projects\ZebraWeb;C:\Users\chaouki\Documents\tmssoftware\TMS WEB Core RSXE11\Core Source\;C:\Users\chaouki\Documents\tmssoftware\TMS WEB Core RSXE11\Core Source\RTL;C:\Users\chaouki\Documents\tmssoftware\TMS WEB Core RSXE11\Core Source;C:\Users\chaouki\Documents\tmssoftware\TMS WEB Core RSXE11\Compiler;C:\Program Files (x86)\tmssoftware\TMSFNCUIPack RSXE11\WEB;C:\Users\chaouki\Documents\tmssoftware\TMS Busines Core Library\source\core\common;C:\Users\chaouki\Documents\tmssoftware\TMS Busines Core Library\packages\web\pju;C:\Users\chaouki\Documents\tmssoftware\TMS XData\source\core\common;C:\Users\chaouki\Documents\tmssoftware\TMS XData\source\core\web;C:\Users\chaouki\Documents\tmssoftware\TMS XData\packages\web\pju;C:\Users\chaouki\Documents\tmssoftware\TMS WEB Core RSXE11" -FUC:\Users\chaouki\Documents\Embarcadero\Studio\Projects\ZebraWeb\TMSWeb\Debug -dDEBUG -dWEBLIB
Pas2JS Compiler version 1.0.2 [2018/09/26] for Win32 i386 / TMS WEB Core version v1.0.5.3
[Error] ZebraMain.pas(118): identifier not found "WEBLib"
identifier not found "WEBLib"
[Fatal Error] identifier not found "WEBLib"
############################################################
Below is the procedure the compiler complains about the identifier not found:

procedure TForm1.WebButton10Click(Sender: TObject);
var
  i: integer;
  edit : TWebEdit;
begin
  for i := 0 to ControlCount - 1 do
  begin
    if (Form1.Controls is TWebEdit) then // Compiler stops here.
    begin
    edit :=  TWebEdit(Form1.Controls);
      if (edit.Text = '') then
      begin
        edit.SetFocus;
        edit.Text := WebButton10.Caption;
        break;
      end;
    end;
  end;
end;

Please advise.

Thanks in advance.

We have seen this issue. It is related to the compilation process. We're investigating to have this fixed asap.