-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feature: add autocompletion when importing libraries #182
Comments
I have found this solution on stackoverflow: https://stackoverflow.com/a/52294684/13545849 Look at this demo |
I like this answer: https://stackoverflow.com/a/65555804/13545849 |
lukasbach/monaco-editor-auto-typings#7 (comment) |
@Konard , I need to know how bundler will be working because this information can help me how I should add types to monacoeditor: https://chat.openai.com/share/85140d0d-25db-45a6-8d37-0151faf9507d |
@FreePhoenix888 it is planned to work using |
This is not what I want to hear. |
@FreePhoenix888 with bundler no packages will be installed into isolation provider, most of them will be removed. Bundler creates a bundle when package is installed in Deep. The bundle is stored in database. I need to know which data is required for Monaco editor to do typing support. May be bundler itself is not enough, because it creates bundle using webpack, and the output result is single javascript file. At the moment I'm not sure how it will work with .d.ts files and so on. |
Code
Additional Information
If we create interface inside our root function and use the interface - typescript works fine. The problem is related only to the require parameter that is of type any and Typescript does not know what that require can return. It is not the same as using builtin require
The text was updated successfully, but these errors were encountered: