imports added automatically to jet view

Hi,

Somebody know why when I use the alert function (i expected pure javascript alert), the import
import {alert} from “…/…/…/lib/webix/pivot/codebase/webix/webix”;
is added automatically in the file of my jetview ? and show “webix.alert”, and the size of app.js is multiplied, for example from 305kb to 5.15MB

Thanks in advance

probably this is the result of editor’s intellisense (VSCode?).

:), is Visual studio 2017

Not found way to disable this behavior, i found this in stackoverflow

But no work for me.

In case of alert you can write code as window.alert(`some`) in such case IDE will know that global alert is used and will not try to auto-import anything.

Integral, Maksim, thanks so much.