카테고리 없음
[node] 모듈 type 지정하기
냐옴
2024. 10. 30. 18:36
CommonJS 모듈로 지정
// .js 파일이 CommonJS 모듈로 취급된다
{
"type": "commonjs" // 디폴트 값
}
// module.pxports, require 사용
ECMAScript 모듈로 지정
// .js 파일이 ECMSScript 모듈로 취급된다
{
"type": "module"
}
// export, import 사용