새끼 개발자의 Life is egg

[Node.js] Module ~ needs an import assertion of type "json" 본문

개발's egg/Javascript

[Node.js] Module ~ needs an import assertion of type "json"

현z 2023. 9. 7. 10:47

CJS에서 ESM 으로 바꾸면서

json 파일을 import 하는데 이렇게 타입에러가 났다

 

그냥 json 타입이라고 알려주면 된단다.

 

import testFile from "./test.json" assert { type: 'json' };

 

 

https://v8.dev/features/import-assertions

Comments