Angular 13:uckulting语法:出乎意料的令牌' export'
我已将 Angular 从 12 更新到 13。当我运行该应用程序时,我收到错误“未捕获的语法错误:意外的令牌‘导出’”。添加以下一些细节以获取上下文。
在 angular.json 配置中,我在脚本部分中有以下条目。
"./node_modules/@angular/core/bundles/core.umd.js"
在角度更新到 13 后,我注意到我们有 .mjs 文件代替了 umd JS 文件 “./node_modules/@angular/core/esm2020/core.mjs”。
注意: 错误来自scripts.js,它指向“export * from './index';”行(此行来自 core.mjs 文件)
请告诉我是否有人遇到过此问题及其解决方案?
我尝试在主 package.json 中添加类型“module”。但仍然遇到同样的问题。
I have updated the Angular from 12 to 13. When I run the app I am getting the error "Uncaught SyntaxError: Unexpected token 'export". Adding below few details to get the context.
In angular.json config, I had below entry in scripts section.
"./node_modules/@angular/core/bundles/core.umd.js"
After the angular update to 13, I noticed that in place of umd JS files we have .mjs file
"./node_modules/@angular/core/esm2020/core.mjs".
Note:
Error is from scripts.js and it's pointing to the line "export * from './index';" (this line is from core.mjs file)
Please let me know if anybody has faced this issue and solution for the same?
I tried adding the type "module" in main package.json. But still getting the same issue.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
@deepak 您好,您可以尝试使用受支持的 Node.JS 版本吗? (10、12 或 14)
Node.JS 团队不再支持 Node.JS 版本 13。如果您使用的是nodejs> 14 请分享您的 package.json 信息
Hi @deepak can you try to use a supported Node.JS version? (10, 12 or 14)
Node.JS version 13 is no longer supported by the Node.JS team. If you are using nodejs > 14 please share your package.json info