I am currently in the process of building a Vue 3 application using the Primevue theme along with Vite, Typescript, and Pinia.
After setting up the project using CMD, I encountered an issue with the main.ts file. It is throwing an error that states:
`import { createApp } from 'vue'
import './style.css'
import App from './App.vue'
createApp(App).mount('#app')`
The error message reads: "Cannot find module './App.vue' or its corresponding type declarations."
Could you please provide a solution to this issue and guide me on how to fix it?