SyntaxError: Cannot use import statement outside a module

박범민·2023년 7월 4일
0

ERROR

목록 보기
2/10

문제상황

import changeValueNotation from 'beomtil';

모듈처리 방식이 기본적으로 commonJS로 되어있는 상황에서 ES6 방식으로 모듈을 가져오려 해서 발생함.
commonJS => require()
ES6 => import from

해결방법

package.json 파일로 가서 아래와 같이 추가해줍니다.

	...
    "type": "module",
    ...
profile
사람은 모로가도 제자리에 놓이게 된다.

0개의 댓글