반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- http3
- TLS
- 비동기
- CSS
- typeScript
- vue-cli
- https
- ViTE
- svelte
- caching
- vue
- msw
- devtools
- CloudFlare
- e2e
- QUIC
- JavaScript
- custom command
- rendering
- 선택자
- import.meta.env
- Testing
- web vital
- SSR
- csr
- Cypress
- aws
- vue3
- api test
- ts error
Archives
- Today
- Total
Develop Note by J.S.
[Typescript] Vite Init TS2307 Error 본문
반응형
Vite로 Vue Project 생성 시 아래와 같은 에러가 발생합니다 .
이때 ./src/ 하위에 shims-vue.d.ts 타입 추론 파일을 생성 한 뒤 아래 코드를 입력해주시면 에러가 발생되지 않습니다.
declare module '*.vue' {
import type { DefineComponent } from 'vue';
const component: DefineComponent<{}, {}, any>;
export default component;
}
declare module '*.scss'; //scss 사용 시
반응형
'Language > Typescript' 카테고리의 다른 글
[Typescript] Enum과 Union Type (0) | 2024.01.30 |
---|---|
[Typescript] TS1484 VerbatimModuleSyntax (0) | 2023.07.17 |
[Typescript] Cypress Command 등록 시 TS2345 Error (0) | 2023.07.11 |
[Typescript] Vite import.meta TS2339 Error (0) | 2023.07.10 |
[Typscript] tsconfig.json (0) | 2023.07.05 |