从Angular开始,还从https://aspnetboilerplate.com下载了Angular / .NET核心模板。
尝试编译项目(从npm启动)时,它失败并显示以下错误:
ERROR in ./src/root.module.ts 39:24
Module parse failed: 'import' and 'export' may only appear at the top level
(39:24)
You may need an appropriate loader to handle this file type.
| if (shouldLoadLocale()) {
| var angularLocale = convertAbpLocaleToAngularLocale(abp.localization.currentLanguage.name);
> import("@angular/common/locales/" + angularLocale + ".js")
| .then(function (module) {
| registerLocaleData(module.default);
有关如何解决此问题的任何建议?我通过该网站进行的搜索并没有真正帮助我解决此特定问题。