angular2 typescript で記述されたコードがあります。これは、サービスとコンポーネントとともにエクスポートされたモジュールです
@NgModule({
declarations:[
...DECLARATIONS
],
imports: [
CommonModule,
ChartModule
],
exports:[
...DECLARATIONS,
CommonModule,
ChartModule
],
providers:[
AlertErrorHandleService
, AuthenticationModelService
, AuthConnectionBackend
],
schemas: [ CUSTOM_ELEMENTS_SCHEMA ]
})
export class MyModule {
static forRoot():ModuleWithProviders {
return {
ngModule: StmsModule,
providers: [AlertErrorHandleService
, AuthenticationModelService
, AuthConnectionBackend
]
};
}
}
この MyModule をさまざまな angular2 アプリケーションで使用したいので、この tsconfig とスクリプトで公開しました
{
"compilerOptions": {
"emitDecoratorMetadata": true,
"removeComments": true,
"module": "es2015",
"target": "es5",
"moduleResolution": "node",
"sourceMap": true,
"declaration": true,
"noImplicitAny": false,
"experimentalDecorators": true,
"lib": ["dom", "es2015"],
"outDir": "dist",
"types": [
"node"
]
},
"exclude": [
"node_modules",
"dist",
"scripts"
],
"angularCompilerOptions": {
"genDir": "aot"
}
}
パッケージ.json
"name": "my-lib",
"version": "0.2.1",
"description": "Shared lib angular2",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"ngc": "ngc",
"lint": "tslint src/**/*.ts",
"copyPackage":"node ./scripts/copy-package",
"build": "rimraf -rf aot dist && npm run ngc && npm run copyPackage",
"publishPackage": "npm run build && cd dist && npm publish"
},
"keywords": [
"angular",
"angular2"
],
"author": "Haddar Macdasi",
"license": "MIT",
"dependencies": {
"@angular/core": "2.1.1",
"@angular/common": "2.1.1",
"@angular/compiler": "2.1.1",
"@angular/compiler-cli": "2.1.1",
"@angular/http":"2.1.1",
"@angular/platform-browser": "2.1.1",
"rxjs": "5.0.0-beta.12",
"angular2-highcharts": "0.4.1",
"highcharts": "5.0.2"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/node": "^6.0.41",
"typescript": "^2.0.3"
}
angular2シードのシードを使用して作成された他のangular2アプリでパッケージをインストールしましたが、AOTではなくAoTでアプリを実行すると、すべて機能しますが、エラーがあります
エラー: 予期しない値 'MyModule' がモジュール 'AboutModule' によってインポートされました
いくつか質問があります:
- パッケージを公開するにはどうすればよいですか / tsconfig "module" = es2015 / systemjs / commonjs 内の相違点は何ですか
- モジュール公開タイプは、angular2 内でパッケージを使用する方法と関係がありますか?
- angular2共有モジュールを公開して差分アプリで使用する方法のベストプラクティスはありますか?