27

我正在尝试将我的 angular2 自定义库之一迁移到 RC.6 + Webpack。我的目录结构是:

- src - source TS files
- lib - transpiled JS files + definition files
- dev - development app to test if it works / looks ok.
- myCustomLib.js - barrel
- myCustomLib.d.ts

dev文件夹中尝试运行应用程序。我引导我的模块:

app.module.ts

import { BrowserModule }                from "@angular/platform-browser";
import { NgModule }                     from "@angular/core";
import { AppComponent }                 from "./app.component";
import { MyCustomModule }               from "../../myCustomLib";

@NgModule({
    imports: [
        BrowserModule,
        MyCustomModule
    ],
    declarations: [ AppComponent ],
    bootstrap: [ AppComponent ]
})
export class AppModule {
}

现在使用 webpack 我捆绑了我的开发应用程序。

webpack.config.js

module.exports = {
    entry: "./app/boot",
    output: {
        path: __dirname,
        filename: "./bundle.js",
    },
    resolve: {
        extensions: ['', '.js', '.ts'],
        modules: [
            'node_modules'
        ]
    },
    devtool: 'source-map',
    module: {
        loaders: [{
            test: /\.js$/,
            loader: 'babel-loader',
            exclude: /node_modules/
        }, {
            test: /\.ts$/,
            loader: 'awesome-typescript-loader',
            exclude: /node_modules/
        }]
    },
    watch: true
};

但是当我尝试加载应用程序时,我收到一条消息:

metadata_resolver.js:230
Uncaught Error: Unexpected value 'MyCustomModule' imported by the module 'AppModule'

我导入的桶文件如下所示:

myCustomLib.js

export * from './lib/myCustomLib.module';

我还在github 上发现了类似主题的提示,但将其更改为:

export { MyCustomModule } from './lib/myCustomLib.module';

没有帮助。我也尝试从src目录导入模块 - 同样的错误。MyCustomModule 应该没问题,因为它以前在 systemJS 上工作得很好。

myCustomLib.module.ts:

import { NgModule }                     from '@angular/core';
import { BrowserModule }                from '@angular/platform-browser';

@NgModule({
    imports: [
        BrowserModule
    ]
})
export class MyCustomModule {}

知道这个错误的原因是什么吗?我在这里看到了类似的主题,但没有任何答案或提示有帮助。

编辑:为了使示例更简单,我已从 MyCustomModule 中删除了所有内容-同样的问题...

4

3 回答 3

1

in myCustomLib.js, 尝试先导入再导出

import { MyCustomModule } from './lib/myCustomLib.module;

export MyCustomModule;
于 2017-01-22T14:07:13.063 回答
1

将 lib 文件夹添加到您的webpack 配置中以解析模块。路径应该相对于 webpack 配置文件的位置。

resolve: {
   modules: ['node_modules','lib']
于 2017-07-14T00:42:41.540 回答
0

您的 MyCustomModule 应该位于 src/app 文件夹中,因为编译器无法识别它,因为编译器会编译 src 文件夹中的所有文件,这就是它无法识别您的模块的原因

于 2017-02-13T10:35:06.957 回答