No Typescript Code Completion

You can see here, that when I hover on the marked word I get to peek into the docs

 

But autosuggestion doesn't work, unfortunately.

You can take a look at my settings if it helps:

 

Any ideas what the issue might be?

0
4 comments

Sidenote: I'm using the TabNine plugin to supplement code completion suggestions.

But I've uninstalled it once and the issue remained.

0

Please share a complete code snippet (as text/file(s)) the issue can be repeated with

0

You could try it with the IonButton props:

 

import React from 'react';
import {
IonHeader,
IonContent,
IonToolbar,
IonTitle,
IonPage,
IonButtons,
IonMenuButton,
IonButton,
} from '@ionic/react';

const AllGoals: React.FC = () => {
return (
<IonPage>
<IonHeader>
<IonToolbar>
<IonButtons slot="start">
<IonMenuButton />
</IonButtons>
<IonTitle>All Goals</IonTitle>
</IonToolbar>
</IonHeader>
<IonContent>
<IonButton fill="clear" expand="block" size="small">Button</IonButton>
</IonContent>
</IonPage>
);
};

export default AllGoals;
0

It's a known issue, please follow https://youtrack.jetbrains.com/issue/WEB-49713 and linked tickets for updates

1

Please sign in to leave a comment.