I want to use icons from active file icon them inside the suggest widget, like it shows when writing import:
Just create a CompletionItem
with CompletionItemKind.File
and vscode will try to set an icon based on the text of your label (filename):
new CompletionItem("index.ts", CompletionItemKind.File)