반응형
package.json에 "type": "module" 이라고 설정되어 있기 때문에 모듈 단위로 import/export하는 문법만 이해할 수 있어서 생기는 에러.
해결:
1) require문을 import 문으로 바꾼다.
require: var assert = require('assert');
import: import assert from 'assert';
2) package.json의 type을
"type": "commonjs" 로 바꾸거나 지운다.
반응형
'Errors_Tips' 카테고리의 다른 글
python: @lru_cache(None) 데코레이터 (0) | 2021.08.11 |
---|---|
TypeError: 'int' object is not subscriptable 해결 (0) | 2021.07.24 |
[Webpack Error] Cannot find module 'webpack-cli/bin/config-yargs' (0) | 2021.07.18 |
[Python Error] ValueError: invalid literal for int() with base 10: ' ' (0) | 2021.07.18 |
[Node Error] (node:9540) ExperimentalWarning: The ESM module loader is experimental. (0) | 2021.07.18 |
댓글