-
Notifications
You must be signed in to change notification settings - Fork 29.5k
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
Extensions API consumption #1881
Comments
@bpasero |
@weinand I think something is still weird with your code generator. lets skip that generator and use the following generated sample (right click > save as and then rename from *.gif to *.zip): |
@bpasero yes, I had problems with the code generator. After two hours of investigation and removing npm modules from various locations I've learned the following: |
We changed how extensions consume our vscode.d.ts file. Previously the vscode.d.ts file was always present in the node module and needed to be updated manually. With the new solution, we will download the right version of vscode.d.ts for the extension. See also: #970
PreReq:
npm install --g generator-code@next
package.json
and afternpm install
you see intellisense for this specific version (e.g.0.10.3
)You can watch for the output of the
npm install
command to see what is going on under the hood:The text was updated successfully, but these errors were encountered: