When viewing TypeScript files in PhpStorm, constants have inlay hints like so:
The inlay hint in the screenshot above is Ref<boolean, boolean> and it is automatically displayed by PhpStorm.
Is it possible to get the same type of inlay hints for constants in a .vue file?
<template>
<div>test</div>
</template>
<script setup lang="ts">
import { ref } from "vue";
const name = ref("name"); // an inlay hint should be visible after "const name"
</script>
