-
Notifications
You must be signed in to change notification settings - Fork 34.3k
Closed
Labels
insiders-releasedPatch has been released in VS Code InsidersPatch has been released in VS Code InsidersjavascriptJavaScript support issuesJavaScript support issuestypescriptTypescript support issuesTypescript support issueswebIssues related to running VSCode in the webIssues related to running VSCode in the web
Milestone
Description
Follow up on microsoft/TypeScript#39707
Overview
We now have TSServer running in web environments, but it is currently limited to single file intellisense. It would be nice if we could also offer some IntelliSense for third party packages that are imported in the current file.
If a user is trying out react for example, we should be able to offer IntelliSense for React
and ReactDOM
:
//@ts-check
import * as React from 'react';
import * as ReactDOM from 'react-dom';
class HelloMessage extends React.Component {
render() {
return (
<div>
Hello {this.props.name}
</div>
);
}
}
ReactDOM.render(
<HelloMessage name="Taylor" />,
document.getElementById('hello-example')
);
maltenuhn, iagobruno, eifr, eifr-vault, dalisoft and 4 more
Metadata
Metadata
Labels
insiders-releasedPatch has been released in VS Code InsidersPatch has been released in VS Code InsidersjavascriptJavaScript support issuesJavaScript support issuestypescriptTypescript support issuesTypescript support issueswebIssues related to running VSCode in the webIssues related to running VSCode in the web