我使用“ create-react-app”创建了一个新的node.js项目。在我引入新的js依赖项“ isomorphic-git@0.35.1”之前,它一直运行良好。现在,该项目无法编译,并显示以下错误消息。
./node_modules/isomorphic-git/dist/for-future/isomorphic-git/index.js
Module parse failed: Unexpected token (1262:33)
You may need an appropriate loader to handle this file type.
| if (configIndex !== -1) {
| const config = this.parsedConfig[configIndex];
| const modifiedConfig = { ...config, value, modified: true };
| if (append) {
| this.parsedConfig.splice(configIndex + 1, 0, modifiedConfig);
我也没有更改webpack.config文件中的任何配置。
这就是我尝试在组件中使用依赖项的方式。
import * as git from "isomorphic-git";