에러 노트
[Vue] Cannot find module 'vue' or its corresponding type declarations.
2021bong
2023. 3. 17. 13:04
저는 방금 막 vite로 vue + ts 프로젝트를 시작했을 뿐인데요... 타입스크립트님 또 왜 그러시는지요....🥲
Cannot find module './App.vue' or its corresponding type declarations.
이유
타입이 없으시답니다... 그래서 d.ts파일을 생성해줘야한다고 한다.
// src/shims-vue.d.ts
declare module '*.vue' {
import type { DefineComponent } from 'vue';
const component: DefineComponent<{}, {}, any>;
export default component;
}
728x90