I recently set up a brand new Vue 3 application with TypeScript. This project was generated today using the latest version of Vue with npm create 'project name' (Vue 3) (Vue/CLI 5.0.8).
Every time I try to import components into the router or even into app.vue, I encounter an error on all imports stating 'could not find a declaration file for module'. It seems like there might be a simple oversight on my end causing this issue.
The project does compile and launch successfully despite this error.
https://i.sstatic.net/2VA7N.png
The components are currently just placeholders and no actual code has been implemented in them yet.
Here is an example of one of the components:
<template>
<div>
<!-- -->
<h1>Inventory</h1>
</div>
</template>
<script setup>
</script>