0

当我的 Typescript 代码出现错误时,我无法让浏览器控制台窗口显示编译器错误。相反,我得到了这个:

Uncaught Error: Angular JIT compilation failed: '@angular/compiler' not loaded!
  - JIT compilation is discouraged for production use-cases! Consider AOT mode instead.
  - Did you bootstrap using '@angular/platform-browser-dynamic' or '@angular/platform-server'?
  - Alternatively provide the compiler with 'import "@angular/compiler";' before bootstrapping.

我需要对 Angular 源文件做些什么来解决这个问题?

我是 Angular 的新手,我的设置是开箱即用的。

这是我的main.ts文件:

import { enableProdMode } from '@angular/core';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';

import { AppModule } from './app/app.module';
import { environment } from './environments/environment';

if (environment.production) {
  enableProdMode();
}

platformBrowserDynamic().bootstrapModule(AppModule)
  .catch(err => console.error(err));
4

1 回答 1

2

我有同样的问题,我发现这将通过在 main.ts 文件中导入编译器来解决

导入'@angular/编译器';

于 2020-10-22T13:10:28.353 回答