我已经阅读了https://angular.io/tutorial/toh-pt0上的教程,我目前正在尝试将教程编译到 /public/ 文件夹中并收到错误...
Module parse failed: Unexpected character '@' You may need an
appropriate loader to handle this file type. | import {
HeroSearchComponent } from
'./components/hero-search/hero-search.component'; | | @NgModule({ |
imports: [ | BrowserModule,
我的 webpack.config.js 很简单
const path = require('path');
module.exports = {
entry: { app: './src/app/app.module.ts' },
output: { filename: '[name].bundle.js',
path: path.resolve(__dirname, '../public') },
module: {
rules: [{
test: /\.ts$/,
use: [
//'babel-loader',
],
exclude:[/node_modules/],
}],
}
};
和我的 app.module.ts
import { HttpClientInMemoryWebApiModule } from 'angular-in-memory-web-api';
import { InMemoryDataService } from './services/in-memory-data/in-memory-data.service';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './components/app/app.component';
import { HeroesComponent } from './components/heroes/heroes.component';
import { HeroDetailComponent } from './components/hero-detail/hero-detail.component';
import { MessagesComponent } from './components/messages/messages.component';
import { DashboardComponent } from './components/dashboard/dashboard.component';
import { HeroSearchComponent } from './components/hero-search/hero-search.component';
@NgModule({
imports: [
BrowserModule,
FormsModule,
AppRoutingModule,
HttpClientModule,
...
})
export class AppModule { }
如您所见,我尝试使用 babel-loader 并获得模块构建失败:SyntaxError: Unexpected token with the "@"。
我的第一个想法是我缺少一个加载器,但是我尝试了几个加载器,babel 是唯一一个改变了我收到的错误消息但没有解决问题的加载器。
该应用程序使用“ng serve”正确编译,并且他们将 webpack 与标准 angular-cli 应用程序一起使用。
我已经查看了其他几个具有类似问题的问题,其中大多数与 css 或 scss 相关,并且没有使用正确的加载器。我确实相信这是一个加载程序问题,但找不到可以使用的加载程序。