티스토리 뷰
Programming language/Reactjs
Re-exporting a type when the '--isolatedModules' flag is provided requires using 'export type'.
hello-world 2022. 7. 27. 12:27728x90
반응형
CRA 로 리엑트 작업중에 interface 를 export 선언하자 아래와 같은 에러 발생.
Re-exporting a type when the '-isolatedModules' flag is provided requires using 'export type'.
우선 컴파일 옵션이 가물가물하여 --isolatedModules 을 찾아보았다.
--isolatedModules : 추가 검사를 수행하여 별도의 컴파일
(예를 들어 트랜스파일된 모듈 혹은 @babel/plugin-transform-typescript) 이 안전한지 확인합니다.
옵션 | 타입 | 기본값 |
--isolatedModules | boolean | false |
라고 한다..
그리고 TS 버전을 찾아보니 3.8 부터는 type-only imports와 exports를 위해 type 이란 것을 붙여야 한다고 한다.
아래와 같이 선언되면 될 것 같다.
import React from 'react';
interface IRoute{
path: string;
element: React.ExoticComponent<React.ComponentPropsWithRef<()=> JSX.Element> >;
}
interface IRouteGroup extends IRoute{
children?: IRoute[];
}
export type {
IRoute,
IRouteGroup
}
728x90
반응형
'Programming language > Reactjs' 카테고리의 다른 글
forwardRef 관련 Component definition is missing display name(react/display-name) 에러 (0) | 2022.08.24 |
---|---|
'React' must be in scope when using JSX 에러?? (0) | 2022.08.24 |
React.StrictMode( Strict 모드 ) (0) | 2022.06.09 |
React 에서 import 시 경로 설정. (0) | 2022.06.08 |
export 'Switch' (imported as 'Switch') was not found in 'react-router-dom' 오류 (0) | 2022.06.08 |
댓글
250x250
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- anime.js
- CSS
- 내장요소
- cordova
- Angular
- 태그
- RefreshToken
- JsDoc
- Intrinsic
- 자바스크립트
- interceptors
- IntrinsicElements
- 아이콘 폰트 만들기
- 코도바
- 반복문
- svg 폰트
- icon font
- react-router-dom
- svg icon font
- Aptana
- 리프래시토큰
- React.StrictMode
- react
- 앵귤러
- Vue3
- git checkout -b
- svg모션
- git
- for of 구문
- vue-router
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 |
글 보관함